https://github.com/th3-z/fonv-builder
:game_die: Character builder for Fallout New Vegas — computes build stat requirements both retroactively and proactively
https://github.com/th3-z/fonv-builder
fallout fallout-new-vegas javascript python vue vuex
Last synced: 6 months ago
JSON representation
:game_die: Character builder for Fallout New Vegas — computes build stat requirements both retroactively and proactively
- Host: GitHub
- URL: https://github.com/th3-z/fonv-builder
- Owner: th3-z
- License: mit
- Created: 2020-05-17T00:17:09.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2023-01-06T06:45:28.000Z (almost 3 years ago)
- Last Synced: 2025-03-24T16:52:03.173Z (7 months ago)
- Topics: fallout, fallout-new-vegas, javascript, python, vue, vuex
- Language: Vue
- Homepage: http://fonv-builder.th3-z.xyz/
- Size: 1.23 MB
- Stars: 5
- Watchers: 1
- Forks: 0
- Open Issues: 21
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# fonv-builder
Source code for fonv-builder. Work in progress.
## Features
* Fallout: New Vegas character planner
## Building
### Build requirements
* Python3
* python3-flask
* python3-venv
* NodeJS### Instructions
* `pip3 install -e .`
* `python setup.py bdist_wheel`
* `npm install client`
* `npm install -g @vue/cli`
* `npm --prefix client/ run build`## Installation
### Requirements
* Python3
* python3-flask
* python3-venv### Instructions
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/activate`
* `pip3 install fonv_builder-VERSION-py3-none-any.whl`
* `mkdir -p venv/var/server-instance`
* `export FLASK_APP=server`
* `flask init-db`
* `waitress-serve --call 'server:create_app'`