Add flask app with auto-reload to render the form template
This commit is contained in:
parent
433862d0ad
commit
2333ccd168
12 changed files with 662 additions and 61 deletions
19
README.md
19
README.md
|
@ -10,7 +10,24 @@ cd glicid-spawner
|
|||
poetry install
|
||||
poetry run pre-commit install
|
||||
```
|
||||
To activate the virtual environement:
|
||||
|
||||
To test the spawner:
|
||||
```bash
|
||||
poetry run pytest
|
||||
```
|
||||
|
||||
To lint and format the source code:
|
||||
```bash
|
||||
poetry run ruff check . --fix
|
||||
poetry run ruff format
|
||||
```
|
||||
|
||||
To render the form template (with live reload):
|
||||
```bash
|
||||
poetry run python -m render
|
||||
```
|
||||
|
||||
To activate the virtual environement globally:
|
||||
```bash
|
||||
source .venv/bin/activate
|
||||
```
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue