- Added character selection and history management using local storage. - Implemented hint system that unlocks based on the number of guesses. - Enhanced UI with animations for hint unlocks and special win conditions. - Created a server endpoint to record wins in the database.
10 lines
130 B
Bash
10 lines
130 B
Bash
#!/bin/bash
|
|
set -e
|
|
|
|
# Migrate the database
|
|
npm run db:migrate
|
|
|
|
# Start the production server
|
|
exec npm run preview --host 0.0.0.0
|
|
|