19 lines
295 B
Markdown
19 lines
295 B
Markdown
# JOJ3-config-generator
|
|
|
|
## Getting Started
|
|
|
|
### Setup venv (Optional)
|
|
|
|
```bash
|
|
python3 -m venv env # you only need to do that once
|
|
# each time when you need this venv, if on Linux / macOS use
|
|
source env/bin/activate
|
|
```
|
|
|
|
### For developers
|
|
|
|
```bash
|
|
pip3 install ".[dev]"
|
|
pre-commit install
|
|
```
|