-
Notifications
You must be signed in to change notification settings - Fork 5
Development
Moritz Wolf edited this page Aug 11, 2023
·
2 revisions
When developing a protocol.yml it's practical to have this environment file or setting these variables manually in your terminal:
.env
FLASK_DEBUG=true
FLASK_RUN_EXTRA_FILES="protocol.yml"
With this flask run
will watch for file changes in your python code and restart the server automatically. Correspondingly for client side code you can use npm run watch
to watch for file changes.