Indeed, but with better UI.
Follow the instructions below to get a copy of the project up and running on your machine for development and testing. See deployment for notes on how to deploy the project on a live system.
-
Clone the repo
-
cdinto thebackenddirectory
cd backend
- Install required packages
npm install
- Create and seed the jobly database in PostgreSQL and load data.
createdb jobly
psql jobly < data.sql
- Start the server (NOTE: it will start on port 3001)
nodemon server.js
- Similarly,
cdinto thefrontenddirectory, install the required packages, and then start the app:
cd frontend
npm install
npm start
Your app can be seen at: http://localhost:3000
To run tests, simply type the following in your CLI:
createdb jobly-test
cd backend
jest
cd frontend
npm test
- React - framework for frontend
- Express - framework for backend
- Postgres - object-relational database system
Made by Paige Godfrey and Sairina Merino Tsui