Skip to content

Latest commit

 

History

History
39 lines (28 loc) · 670 Bytes

readme.md

File metadata and controls

39 lines (28 loc) · 670 Bytes

React Tryout (Components, Routing, Data Bindings, State/Props)

Backend - Express API (in JS)

Frontend - React (in JSX)

Frontend Design - Twitter Bootstrap

Database - Postgres + Sequelize ORM

Try This

DB Setup
$ touch backend/dbconn_old/dbKeys.js

Update the file accordingly :

module.exports = <YOUR_PG_DB_URI>

Run App
  • NPM
$ cd reactpgnodeapp
$ npm run install_all
$ npm run devmode

or,

  • Yarn
$ cd reactpgnodeapp
$ yarn install && cd react_node_express_app && yarn install && cd ..
$ yarn run server

// Open Another Tab
$ cd react_node_express_app && yarn start