An open API service indexing awesome lists of open source software.

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

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`.