GLUG PACE is a group of people who works for FOSS. This project is the Official website for the GLUG PACE Community. Find out more information at glugpace.
- React for managing the presentation logic of your application.
- Babel for compiling ES2015+ down to ES5 compatible code. Additionally, this project is set up to support type checking using Flow syntax.
- WebPack for bundling code down to a single file and enabling hot module reloading.
In order to get started developing, you'll need to do a few things first.
- Make sure you have installed node and git in your system, clone this repository and cd to that folder.
git clone https://github.com/mohammed-adil/glugpace.git
- Install all of the
node_modules
required for the package. Depending on your computer's configuration, you may need to prefix this command with asudo
.
npm install
- Run the start command to get the project off the ground. This command will not only build your JS files using the Webpack
dev-server
.
npm start
-
Head over to http://localhost:3000/glugpace/ to see your app live!
-
Run the build command to build the project.
npm build
- Commit all the changes to the project which you feel necessary and send in a pull request to us!
git add -A
git commit -m "Fixed something!"
git push --set-upstream origin master