A personal frontpage showcasing my projects. See iriscot.org
-
Clone the repo
-
Run the automated install script
./update.sh
-
Reverse proxy from port 4888
-
????
-
PROFIT!!!11
To update simply execute installation script
./update.sh
-
Extract Translatable Strings:
pybabel extract -F babel.cfg -o messages.pot .
This command extracts translatable strings and generates a template file (
messages.pot
) containing these strings. -
Update Translations:
pybabel update -i messages.pot -d translations
After extracting translatable strings, you can update existing translation files or create new ones using this command. It takes the template file (
messages.pot
) and updates the translation files in thetranslations
directory accordingly. -
Compile Translations:
pybabel compile -d translations
Once you've updated or created translation files, use this command to compile them into binary
.mo
files. The compiled files will be stored in thetranslations
directory.