mirror of
https://github.com/573dev/gfdm-server.git
synced 2026-03-21 17:54:19 -05:00
Simulated eAmuse Server for GFDM
|
|
||
|---|---|---|
| .github/workflows | ||
| docs | ||
| tests | ||
| v8_server | ||
| .gitignore | ||
| .readthedocs.yml | ||
| .travis.yml | ||
| AUTHORS | ||
| CHANGES.md | ||
| MANIFEST.in | ||
| pyproject.toml | ||
| README.md | ||
| setup.cfg | ||
| setup.py | ||
| TODO.txt | ||
| tox.ini | ||
| VERSION | ||
V8 Server
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