https://github.com/aghaffar570/basicappsetup
Simple web app setup with familiar technologies
https://github.com/aghaffar570/basicappsetup
express postgresql react sequelize webpack
Last synced: 3 months ago
JSON representation
Simple web app setup with familiar technologies
- Host: GitHub
- URL: https://github.com/aghaffar570/basicappsetup
- Owner: aghaffar570
- Created: 2018-12-19T04:32:02.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2018-12-20T06:27:34.000Z (over 7 years ago)
- Last Synced: 2025-03-20T23:27:51.403Z (over 1 year ago)
- Topics: express, postgresql, react, sequelize, webpack
- Language: JavaScript
- Homepage:
- Size: 84 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# BasicAppSetup
A basic Web Application that
connects to a Postgres Database (Defaulted Name: pokedex)
and uses React for view rendering.
*Utilizes the MVC pattern
## Technologies
### FE
- react
- react-dom
- react-router-dom
- redux
### BE
- express
- pg
- pg-hstore
- sequelize
- postgresql
### Glue
- webpack
- babel
- axios
- react-redux
## Demo
First set up a postgreSQL DB on your local machine and create a database table with the defaulted name, pokedex (configured in package.json).
Begin with `npm install`
You can seed the DB with the given data in seed.js by `npm run seed` or input data manually.
Lastly, run the app with `npm run start-dev` and view on browser on `localhost:3000`.