(PERN) Postgres Express React Node stack using yarn workspaces.
- Run
yarn. - Create a new database and run
db.sqlto setup the tables needed. - In the packages/server directory, create a .env file (or rename the .env.example file to .env) and place the values.
- Make sure the new database with tables is running.
- Run
yarn dev. - Navigate to
localhost:3000in your browser.
Builds the app for development. It is watched by webpack for any changes in the front end (React) and back end (Express). Check out localhost:3000 on browser.