Arija A.'s personal website and services https://ari.lt/
Find a file
Arija A. d57c47f820
Add my tilde.town page to home
Signed-off-by: Arija A. <ari@ari.lt>
2026-01-05 01:31:08 +02:00
src Add my tilde.town page to home 2026-01-05 01:31:08 +02:00
.editorconfig reinit 2025-03-16 18:12:47 +02:00
.eslintrc.js Improve UI and UX 2025-08-22 23:42:23 +03:00
.gitignore Add N of them to /world 2025-12-31 23:30:03 +02:00
.prettierrc Implement RSS validator 2025-08-25 00:26:16 +03:00
example.env Update examples 2025-12-30 00:54:55 +02:00
LICENSE Add tool: Two of Them 2026-01-01 01:37:13 +02:00
pyproject.toml Initialise theme: room101 2025-08-17 20:55:40 +03:00
README.md Fix create-counter command 2025-11-01 12:54:15 +02:00
requirements.txt Implement searching 2026-01-03 09:04:38 +02:00
tox.ini reinit 2025-03-16 18:12:47 +02:00

Ari.lt

Arija A.'s personal website and services

Running

First compile WASM PoW:

cd src/static/js/wasm
./compile.sh
cd ../../../../

Then:

python3 -m venv venv
source venv/bin/activate
source .env  # see example.env
pip install --upgrade -r requirements.txt
cd src
memcached -d
# If you remove migrations/:
# flask db init
# vim migrations/script.py.mako (add import flask_app)
# flask db migrate -m 'Initial migration'
flask db upgrade
flask run

For production use a WSGI server such as Gunicorn:

python3 -m venv venv
source venv/bin/activate
source .env  # see example.env
pip install --upgrade -r requirements.txt
pip install --upgrade gunicorn
cd src
memcached -d
flask db upgrade
python3 -m gunicorn -b 127.0.0.1:12345 -w 4 app:app  # ... Or whatever your configuration is