Bootcamp Project 2
Login as a user, input a post (aka 'New Relection') based on a dad joke and a picture of coffee, and the upload the post so everyone can see it.
- Database: Postgres (running on Render.io)
- Frontend: Vite + React
- Backend: Expressjs + Sequelize ORM
- Deployment: Render.io
- Version Control: git + github
- Clone the repo.
- Install Postgres
- Login to postgres with
psql -U postgres - Run
\i server/src/db/schema.sqlto create the database. - Run
\qto quit postgres.
- Run
cp .env.EXAMPLE .env - Update the values in .env file to reflect your local setup (you'll want to use DB_NAME, DB_PASSWORD, DB_USER if you're running locally, production uses DB_URL instead)
- Install all the dependencies by running
npm i - Run the dev server with
npm run dev
The main branch is continuously deployed to Render.com
Visit https://bootcamp-project-two.onrender.com
