A simple Items Random Rater App
Live Demo
https://items-random-rater.herokuapp.com/
Instruction for running app on localhost
- Open your terminal and clone the app using command
git clone https://github.com/muhammed-salman/items-random-rater.git
- Type
cd items-random-rater
to get inside the directory. - Now type
npm install
- After the installation of required node_modules type
npm run start
- Now the application can be accessed on
localhost:3050
Following scripts are available in the project
npm run <script_name>
usage: start
: To run project on localhost:3050test
: To test the App using mochatest:watch
: To continously run the test while modifying files.clean
: To remove the production build codebuild
: To create a production build for deploymentserve
: To run webpack development serverdeploy
: To deploy the App to github pages** [Please change the repo url usinggit remote
command before deployment (you can't push to my repo ;) )]
Deploy using heroku cli (with git) [ Run it inside the git local repo ]
- Login to heroku:
heroku login -i
- Create heroku app:
heroku create $YOUR_APP_NAME
- Check that the heroku remote has been added:
git remote -v
- Deploy your app by pushing master branch to heroku remote:
git push heroku master
** Currently there are issues in deploying this app on github. You can easily deploy it using heroku.
Readme will be updated as necessary