91 lines
1.7 KiB
Plaintext
91 lines
1.7 KiB
Plaintext
*
|
|
!/.gitignore
|
|
|
|
################################################################
|
|
# DOCKER
|
|
################################################################
|
|
|
|
!/.dockerignore
|
|
!/Dockerfile
|
|
!/docker-compose.yaml
|
|
|
|
################################################################
|
|
# MAIN FOLDER
|
|
################################################################
|
|
|
|
!/justfile
|
|
!/Makefile
|
|
!/README.md
|
|
!/LICENSE
|
|
!/.coveragerc
|
|
!/pyproject.toml
|
|
!/requirements*
|
|
|
|
################################################################
|
|
# PROJECT FILES
|
|
################################################################
|
|
|
|
!/templates
|
|
!/templates/template*
|
|
|
|
!/notes/
|
|
!/notes/week*.pdf
|
|
!/notes/README.md
|
|
|
|
!/src
|
|
!/src/**/
|
|
!/src/**/*.py
|
|
!/src/**/*.yaml
|
|
!/main.py
|
|
|
|
!/notebooks
|
|
!/notebooks/*.ipynb
|
|
!/notebooks/*.md
|
|
|
|
# NOTE: models are created as part of the build process:
|
|
!/models
|
|
!/models/*.yaml
|
|
!/models/README.md
|
|
|
|
!/docs
|
|
!/docs/*/
|
|
!/docs/*/Models/
|
|
!/docs/**/*.md
|
|
|
|
!/tests
|
|
!/tests/**/
|
|
!/tests/**/*.py
|
|
!/tests/resources/*.yaml
|
|
!/tests/README.md
|
|
|
|
!/dist
|
|
!/dist/VERSION
|
|
|
|
################################################################
|
|
# AUXLIARY
|
|
################################################################
|
|
|
|
/logs
|
|
/**/.env
|
|
|
|
################################################################
|
|
# TEMPLATES
|
|
################################################################
|
|
|
|
!/templates/.env
|
|
|
|
################################################################
|
|
# ARTEFACTS
|
|
################################################################
|
|
|
|
/**/__pycache__
|
|
/**/.pytest_cache
|
|
/**/.DS_Store
|
|
/**/__archive__*
|
|
|
|
################################################################
|
|
# Git Keep
|
|
################################################################
|
|
|
|
!/**/.gitkeep
|