mirror of
https://github.com/573dev/gfdm-server.git
synced 2026-04-24 23:07:41 -05:00
29 lines
814 B
Markdown
29 lines
814 B
Markdown
# Archived
|
|
|
|
This project is archived. I am not working on it anymore as I don't own V8, and I think there are other implementations out there that fill in the gaps that this has.
|
|
|
|
# V8 Server
|
|
[](https://www.python.org/)
|
|
[](https://github.com/ambv/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:
|
|
|
|
```python
|
|
# 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
|
|
```
|