tududi/backend/start.sh
Chris 3c1209a5a9
Express migration (#80)
* Initial migration

* Cleanup and create migration scripts

* Introduce test suite

* Fix test issues

* Correct CORS issue and update paths

* Update README
2025-06-16 21:50:44 +03:00

11 lines
No EOL
310 B
Bash
Executable file

#!/bin/bash
# Start script for Express backend
echo "Starting Express backend..."
echo "Make sure to set environment variables if needed:"
echo " TUDUDI_SESSION_SECRET=your_secret_here"
echo " TUDUDI_USER_EMAIL=your_email@example.com"
echo " TUDUDI_USER_PASSWORD=your_password"
echo ""
PORT=3001 npm start