mirror of
https://github.com/lucaspalomodevelop/Party.git
synced 2026-03-13 00:07:21 +00:00
11 lines
146 B
Bash
Executable File
11 lines
146 B
Bash
Executable File
#!/bin/sh
|
|
if [ $? -eq 1 ]; then
|
|
pip install qrcode
|
|
fi
|
|
|
|
cat ./Config/party.sql | sqlite3 party.db
|
|
|
|
export FLASK_APP=main.py
|
|
|
|
sudo python3 main.py
|