kopia lustrzana https://dev.funkwhale.audio/funkwhale/funkwhale
14 wiersze
286 B
Bash
Executable File
14 wiersze
286 B
Bash
Executable File
#! /bin/bash
|
|
|
|
echo "Loading demo data..."
|
|
|
|
python manage.py migrate --noinput
|
|
|
|
echo "Creating demo user..."
|
|
|
|
cat demo/demo-user.py | python manage.py shell -i python
|
|
|
|
echo "Importing demo tracks..."
|
|
|
|
python manage.py import_files "/music/**/*.ogg" --recursive --noinput --username demo
|