LGBTees is a passion project of mine - I wanted to strengthen my skills and learn new ones, all while highlighting some awesome threads from LGBTQ+ businesses. Live site here!
If you would like to work on this project with me, please see how to contact me on my GitHub profile!
- Clone this repo
- From the root of the repo,
cd
intobackend
and runnpm i
thennpm start
- Inside
/backend
, create a.env
file and choose a port number and a database file (to view in your browser and have a local db):
PORT=
DB_FILE=
- Still in
/backend
, run the following commands to build the database and seed it with starter data:
npx dotenv sequelize db:create
npx dotenv sequelize db:migrate
npx dotenv sequelize db:seed:all
- Finally, run
npm start
in/backend
first and then in the/frontend
terminal to start the backend and frontend servers!