mirror of
https://code.eliotberriot.com/funkwhale/funkwhale.git
synced 2025-10-03 13:09:17 +02:00
13 lines
286 B
Bash
Executable file
13 lines
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
|