Skip to content

s2t2/react-robots

Repository files navigation

A CRUD App using React and MongoDB

MERN Stack: Mongo, Express, React, Node.

Usage

View this application in production at https://react-robots.herokuapp.com/.

Contributing

Prerequisites for Development

Install Node.

Prerequisites for Testing

Install Java.

Download selenium standalone server:

curl -O http://selenium-release.storage.googleapis.com/2.53/selenium-server-standalone-2.53.0.jar

Installation

Get source code.

git clone git@github.com:s2t2/react-robots.git
cd react-robots/
npm install

Development

Seed a mongo database.

npm run db-seed

Start the web server.

npm start

Testing

Run all tests.

npm run test --silent

API Tests

Run API tests only.

npm run test-api --silent

Component Tests

Run all component tests.

npm run test-components --silent

NOTE: Component tests require a test web server to be running on localhost:3000. Use npm run start-test.

NOTE: Component tests require a webdriver server to be running on http://127.0.0.1:4444/wd/hub. Use npm run wdio-start.

Run a single component test.

npm run test-table --silent
npm run test-form --silent
npm run test-form-submit-new --silent
npm run test-form-submit-edit --silent

Deploying

Deploy master branch to production.

git push heroku master

Commands used to make this repo:

express react-robots --ejs
cd react-robots/
npm install --save webpack
npm install --save-dev webpack-dev-middleware webpack-hot-middleware
npm install --save babel-core babel-loader babel-preset-react babel-preset-es2015 style-loader css-loader
npm install --save react react-dom react-router
npm install --save jquery bootstrap file-loader url-loader
npm install --save moment-timezone json-loader
npm install --save mongoose
npm install --save-dev mocha expect supertest webdriverio babel-register babel-preset-es2017

Commands used to administer and deploy to production the first time:

heroku create react-robots
heroku addons:create mongolab:sandbox
heroku addons:create scheduler
heroku addons:open scheduler # then add a new job for `npm run db-seed-production` to run hourly

About

A production CRUD app built with React and MongoDB

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages