CS 35L Winter 24 Final Project
First, clone the repository
git clone https://github.com/ashchen3/CS35L-todoapp.git
The API key (embedded in the ElephantSQL link) in /backend/.env
has been intentionally expired. Contact [email protected] for the API key to be used as DEV_DATABASE_URL
.
For the JWT secret in the same /backend/.env file, any UTF-8 string may be used. If you desire to generate a new JWT secret, use
node -e "console.log(require('crypto').randomBytes(32).toString('hex'))"
and assign it to the JWT_SECRET
backend environment variable (in the same /backend/.env
file).
To start the server, simply run the startup.sh
script at the root level of the repo
./startup.sh