13 lines
283 B
Bash
Executable File
13 lines
283 B
Bash
Executable File
#!/bin/sh
|
|
echo "aktualisiere Übersetzungen..."
|
|
cd src
|
|
./manage.py makemessages -l de
|
|
./manange.py compilemessages -a
|
|
|
|
echo "lösche den Python Compiler Cache..."
|
|
find . -name "*.pyc" -exec rm -rf {} \;
|
|
touch kasu.wsgi
|
|
|
|
./manage.py collectstatic --noinput
|
|
./manage.py generateimages
|