This is the Express backend for Jobly, version 2.
Request Feature
Table of Contents
A RESTful Node-Express backend to complement Jobly, my job-board app built with React. This app follows the REST architecture principals and returns JSON. Certain routes are protected vie JWT based auth middleware.
Dev environment uses a local postgres database. Site is deployed with a postgres hobby db.
To run locally, install psql for Postgres
- Instructions for HomeBrew on ios
$ brew install postgresql $ brew pin postgresql $ brew services start postgresql $ psql CREATE DATABASE jobly
- Clone the repo
git clone https://github.com/calebthewood/express-jobly
- Install NPM packages
npm install
- Run in Development mode
run start
- Run Jest Tests
run test
- Generate Random Password for one time use.
- Implement PostgreSQL's enum type for 'state' column
- Add technologies/skills for Jobs (many-to-many)
See the open issues for a full list of proposed features (and known issues).
Questions? - I'm on twitter @calebthewood - or email: [email protected]