mirror of
https://gh.wpcy.net/https://github.com/WeblateOrg/weblate.git
synced 2026-05-28 23:52:15 +08:00
10 lines
352 B
Text
Vendored
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'
|