mirror of
https://github.com/Hessenuk/DiscordTickets.git
synced 2024-11-05 04:13:08 +02:00
10 lines
154 B
Bash
10 lines
154 B
Bash
|
#!/bin/sh
|
||
|
|
||
|
echo "Checking environment..."
|
||
|
node scripts/preinstall
|
||
|
|
||
|
echo "Preparing the database..."
|
||
|
node scripts/postinstall
|
||
|
|
||
|
echo "Starting..."
|
||
|
node src/
|