- Install Python 3.x
- Install virtualenv with the command
pip install virtualenv - Create a new virtual environment with
virtualenv venv - Start the virtual environment by running
.\venv\Scripts\activate - Install the necessary python packages with this command:
pip install flask flask-caching waitress python-dotenv
Run the command deactivate to exit the virtual environment when done
- Create/Set the environment variable
DBG_SERVICE_IDto your Daybreak Games issued Service ID in a.envfile
- Start the virtual environment by running
.\venv\Scripts\activate - Use the command
python app.pyto start the application - Open your browser and navigate to http://127.0.0.1:8080/
Run the command deactivate to exit the virtual environment when done