init¶
This will create a basic directory structure at the path you specific, which looks like: . ├── README.md ├── moccasin.toml ├── script │ └── deploy.py ├── src │ └── Counter.vy └── tests
├── conftest.py └── test_counter.py
usage: mox init [-h] [-d] [-q] [-f] [--vscode] [--pyproject] [path]
Positional Arguments¶
- path
Path of the new project, defaults to current directory.
Default:
.
Named Arguments¶
- -d, --debug
Run in debug mode
Default:
False
- -q, --quiet
Suppress all output except errors
Default:
False
- -f, --force
Overwrite existing project.
Default:
False
- --vscode
Add a .vscode/settings.json file.
Default:
False
- --pyproject
Add a pyproject.toml file.
Default:
False