mirror of https://github.com/doccano/doccano.git
pythondatasetsactive-learningtext-annotationdatasetnatural-language-processingdata-labelingmachine-learningannotation-tool
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
500 B
17 lines
500 B
#!/usr/bin/env bash
|
|
|
|
set -o errexit
|
|
|
|
if [ "$1" = "build" ]; then
|
|
cd app/server
|
|
npm install --only=prod
|
|
npm install --only=dev
|
|
./node_modules/.bin/webpack --config ./webpack.config.js --mode production
|
|
echo "Done webpack build."
|
|
ls ./static/bundle
|
|
else
|
|
python app/manage.py migrate
|
|
python app/manage.py collectstatic --noinput
|
|
python app/manage.py create_admin --noinput --username="$ADMIN_USER_NAME" --email="$ADMIN_CONTACT_EMAIL" --password="$ADMIN_PASSWORD"
|
|
|
|
fi
|