Simulated eAmuse Server for GFDM
Go to file
2021-04-18 15:02:53 -05:00
.github/workflows clean up config files 2021-04-18 15:02:53 -05:00
docs clean up config files 2021-04-18 15:02:53 -05:00
tests Get basic flask server running 2021-01-15 11:20:16 -06:00
v8_server Save more game end data 2021-01-15 11:21:35 -06:00
.gitignore Have a bunch of stuff working. Next is gametop 2021-01-15 11:21:35 -06:00
.readthedocs.yml clean up config files 2021-04-18 15:02:53 -05:00
.travis.yml Initial Commit 2021-01-15 11:20:09 -06:00
AUTHORS Initial Commit 2021-01-15 11:20:09 -06:00
CHANGES.md Initial Commit 2021-01-15 11:20:09 -06:00
MANIFEST.in Probably don't really need this 2021-01-15 11:21:33 -06:00
pyproject.toml clean up config files 2021-04-18 15:02:53 -05:00
README.md Probably don't really need this 2021-01-15 11:21:33 -06:00
setup.cfg clean up config files 2021-04-18 15:02:53 -05:00
setup.py clean up config files 2021-04-18 15:02:53 -05:00
TODO.txt Add some logging action 2021-01-15 11:20:16 -06:00
tox.ini clean up config files 2021-04-18 15:02:53 -05:00
VERSION Initial Commit 2021-01-15 11:20:09 -06:00

V8 Server

Python Version Code style: black

Simlated eAmuse Server for GFDM V8 (maybe also V7 in the future?)

Development

To run this in development mode, you should do the following:

# Create a venv and install the package
python -m venv venv
. venv/bin/activate
pip install --upgrade pip
pip install -e .

# Set the development environment variables
export FLASK_APP=v8_server
export FLASK_ENV=development

# Run the server
flask run