mirror of
https://code.eliotberriot.com/funkwhale/funkwhale.git
synced 2025-10-03 14:59:26 +02:00
13 lines
268 B
Bash
Executable file
13 lines
268 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 --plain
|
|
|
|
echo "Importing demo tracks..."
|
|
|
|
python manage.py import_files "/music/**/*.ogg" --recursive --noinput
|