* Initial migration * Cleanup and create migration scripts * Introduce test suite * Fix test issues * Correct CORS issue and update paths * Update README
11 lines
No EOL
310 B
Bash
Executable file
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 |