Source code for fonv-builder. Work in progress.
- Fallout: New Vegas character planner
- Python3
- python3-flask
- python3-venv
- NodeJS
pip3 install -e .python setup.py bdist_wheelnpm install clientnpm install -g @vue/clinpm --prefix client/ run build
- Python3
- python3-flask
- python3-venv
Copy the distribution to your web server path, install the .whl and serve the backend with waitress. A Nginx example is provided in example.nginx.conf.
python3 -m venv venv. venv/bin/activatepip3 install fonv_builder-VERSION-py3-none-any.whlmkdir -p venv/var/server-instanceexport FLASK_APP=serverflask init-dbwaitress-serve --call 'server:create_app'