* Add sorting dropdown to projects list * Fix lint issues * fixup! Fix lint issues * Fix new task space and completed expose * Fix completed switch and filters * Fix an issue with projects not appearing as links * Fix an issue with modal appearing relative to task list * Remove obsolete loads * Fix list issues * Fix mobile/desktop settings dropdown functionality * Update project modal layout * Realign project options * Fix tags dropdown in Project modal * Fix inbox amount sidebar layout * Fix project banner tags listing * Remove icons from titles * Fix lint errors * fixup! Fix lint errors * fixup! fixup! Fix lint errors * Beautify notes and areas * Experiment with new notes layout * fixup! Experiment with new notes layout * fixup! fixup! Experiment with new notes layout * Fix note layout * fixup! Fix note layout * Fix an issue with adding an area and refreshing the area list * Fix an issue with project edit delete menu * fixup! Fix an issue with project edit delete menu * Fix an issue with projects create * Update interaction with Notes * Update interaction with tags * fixup! Update interaction with tags * Fix lint issues * Extract shared filter * Add sorting dropdown translations * fixup! Add sorting dropdown translations * fixup! fixup! Add sorting dropdown translations
11 lines
363 B
Bash
Executable file
11 lines
363 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 DB_FILE=db/development.sqlite3 npm start
|