mirror of
https://github.com/tcsenpai/swingmusic.git
synced 2025-06-02 17:30:18 +00:00
19 lines
460 B
Bash
Executable File
19 lines
460 B
Bash
Executable File
#!/bin/bash
|
|
# REVIEW Above: bash is way more compatible than other shells
|
|
|
|
# builds the latest version of the client and server
|
|
|
|
# REVIEW These are not useful if you dont have the source code
|
|
#cd ../swingmusic-client
|
|
#yarn build --outDir ../swingmusic/client
|
|
#../swingmusic
|
|
|
|
# REVIEW Cleaning up
|
|
rm -rf build dist
|
|
|
|
# REVIEW Install poetry & requirements
|
|
poetry || pip install poetry
|
|
poetry install --no-root
|
|
|
|
# Build the app
|
|
poetry run python manage.py --build |