weblate/appliance/boot
Michal Čihař 82be30eaa5 Closer to production setup
Signed-off-by: Michal Čihař <michal@cihar.com>
2016-12-16 16:26:33 +01:00

10 lines
352 B
Text
Vendored

# Enable apache
systemctl enable apache2
systemctl start apache2
# Create database if does not exist
su - postgres -c 'createdb -O weblate weblate' || true
# Database setup for Weblate
su - wwwrun -s /bin/bash -c '/usr/share/weblate/manage.py migrate --noinput'
su - wwwrun -s /bin/bash -c '/usr/share/weblate/manage.py createadmin --password admin'