tududi/backend/start.sh
Antonis Anastasiadis 297600e3c8
Config fixes (#100)
* New file with all configuration parameters.

* Remove all env var usage and use new config.
2025-07-01 13:29:12 +03:00

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