Network Editing
Server provides DSS.
Development environment, local
Using PowerShell:
venv\Scripts\activate
$env:FLASK_APP = "app"
$env:FLASK_ENV = "development"
flask run -p 5003
Using bash:
You can create a virutal environment using python's virtualenv
or by using conda.
To use conda, first install it using the link, create a virtual envorionment with python using conda create -n <your_env_name> python
, activate it
with conda activate <your_env_name>
.
conda activate <your_env_name> # OR use `source <env_name>/bin/activate` if you have virtualenv
pip install -r requirements.txt
flask run -p 5003
Docker deployment
On Linux:
storage_data
component
depends on create a folder named storage_data
outside of the project directory (../storage_data
)
urbanite
requires network docker network create urbanite
build and run
docker compose build docker compose up