Skip to content

Commit

Permalink
Merge pull request #1 from harshil1712/master
Browse files Browse the repository at this point in the history
Change
  • Loading branch information
devanshgajjar authored Jun 22, 2019
2 parents 74c937f + eeb066f commit 8301ea3
Show file tree
Hide file tree
Showing 4 changed files with 907 additions and 41 deletions.
14 changes: 10 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,16 +25,22 @@ _Have another more specific idea? You may want to check out our vibrant collecti

2. **Clone the Repository**

3. **Start developing.**
3. **Install Packages**

Navigate into your new site’s directory and start it up.
Navigate into your new site’s directory and install the packages.

```sh
cd mozguj
yarn install
```

4. **Start developing.**

```sh
cd mozguj/
gatsby develop
```

4. **Open the source code and start editing!**
5. **Open the source code and start editing!**

Your site is now running at `http://localhost:8000`!

Expand Down
6 changes: 3 additions & 3 deletions gatsby-config.js
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
module.exports = {
siteMetadata: {
title: `Gatsby Default Starter`,
description: `Kick off your next, great Gatsby project with this default starter. This barebones starter ships with the main Gatsby configuration files you might need.`,
author: `@gatsbyjs`,
title: `Mozilla Gujarat`,
description: `We are Mozilla Gujarat! A highly enthusiastic community of Mozilla lovers in Gujarat, India`,
author: `Mozilla Gujarat`,
},
plugins: [
`gatsby-plugin-react-helmet`,
Expand Down
47 changes: 37 additions & 10 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,10 +1,12 @@
{
"name": "gatsby-starter-default",
"name": "moz-guj",
"private": true,
"description": "A simple starter to get up and developing quickly with Gatsby",
"description": "Mozilla Gujarat Website",
"version": "0.1.0",
"author": "Kyle Mathews <mathews.kyle@gmail.com>",
"author": "Mozilla Gujarat Team",
"dependencies": {
"bootstrap": "^4.3.1",
"clean-dir": "^1.0.3",
"gatsby": "^2.9.6",
"gatsby-image": "^2.1.4",
"gatsby-plugin-manifest": "^2.1.1",
Expand All @@ -15,29 +17,54 @@
"gatsby-transformer-sharp": "^2.1.21",
"prop-types": "^15.7.2",
"react": "^16.8.6",
"react-bootstrap": "^1.0.0-beta.9",
"react-dom": "^16.8.6",
"react-helmet": "^5.2.1"
"react-helmet": "^5.2.1",
"rebass": "^3.1.1",
"styled-components": "^4.3.2"
},
"devDependencies": {
"chalk": "^2.4.1",
"eslint": "^5.6.0",
"eslint-config-airbnb": "^17.1.0",
"eslint-config-prettier": "^4.1.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-jsx-a11y": "^6.1.1",
"eslint-plugin-react": "^7.12.3",
"husky": "^1.3.1",
"lint-staged": "^8.1.0",
"prettier": "^1.18.2"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,json,css,md}": [
"prettier --write",
"git add"
]
},
"keywords": [
"gatsby"
"gatsby",
"Mozilla Gujarat",
"Mozilla Community Website"
],
"license": "MIT",
"scripts": {
"build": "gatsby build",
"develop": "gatsby develop",
"format": "prettier --write src/**/*.{js,jsx}",
"build": "cleandir ./.cache && gatsby build",
"develop": "cleandir ./.cache && gatsby develop",
"lint": "eslint ./src",
"start": "npm run develop",
"serve": "gatsby serve",
"test": "echo \"Write tests! -> https://gatsby.dev/unit-testing\""
},
"repository": {
"type": "git",
"url": "https://github.com/gatsbyjs/gatsby-starter-default"
"url": "https://github.com/harshil1712/mozguj"
},
"bugs": {
"url": "https://github.com/gatsbyjs/gatsby/issues"
"url": "https://github.com/harshil1712/mozguj/issues"
}
}
Loading

0 comments on commit 8301ea3

Please sign in to comment.