Poor man's instagram.
Install Node.js
Via brew:
brew install node
Via nvm:
brew install nvm
nvm install node
nvm alias default node
Clone repo
git clone git@github.com:EmilShakirov/cetragram_client.git
Run bootstrap script
bin/setup
Run app (by default environment is 'development', port is 8000)
npm start
Run app with options
[<options>] npm start
NODE_ENV=development # build app with development environment
NODE_ENV=production # build app with production environment
NODE_ENV=test # build app with test environment
PORT=8000 # run server on 8000 port
Start to use application in browser:
localhost:8000
npm test
Run javascript linter
npm run eslint
Run stylesheets linter
npm run stylelint
Run all linters
npm run lint
Run karma tests
npm run karma
Based on react-base.