mirror of
https://github.com/cwinfo/powerdns-admin.git
synced 2024-11-09 23:20:27 +00:00
1bf869f508
Also updates AdminLTE to latest stable version. Signed-off-by: Felix Kaechele <felix@kaechele.ca>
12 lines
209 B
Bash
Executable File
12 lines
209 B
Bash
Executable File
#!/bin/sh
|
|
|
|
export LC_ALL=C.UTF-8
|
|
export LANG=C.UTF-8
|
|
|
|
cd /powerdns-admin
|
|
./create_db.py
|
|
yarn install --pure-lockfile
|
|
FLASK_APP=app/__init__.py flask assets build
|
|
|
|
/usr/bin/supervisord -c /etc/supervisord.conf
|