* New file with all configuration parameters. * Remove all env var usage and use new config.
11 lines
332 B
Bash
Executable file
11 lines
332 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 ""
|
|
|
|
NODE_ENV=development PORT=3002 npm start
|