39 lines
698 B
Plaintext
39 lines
698 B
Plaintext
|
*
|
||
|
!/.gitignore
|
||
|
|
||
|
################################################################
|
||
|
# MAIN FOLDER
|
||
|
################################################################
|
||
|
|
||
|
!/Makefile
|
||
|
!/README.md
|
||
|
!/requirements
|
||
|
|
||
|
################################################################
|
||
|
# PROJECT FILES
|
||
|
################################################################
|
||
|
|
||
|
!/assets
|
||
|
!/assets/VERSION
|
||
|
!/assets/LOGO
|
||
|
!/assets/config.yml
|
||
|
|
||
|
!/src
|
||
|
!/src/**/
|
||
|
!/src/**/*.py
|
||
|
|
||
|
!/test
|
||
|
!/test/**/
|
||
|
!/test/**/*.py
|
||
|
|
||
|
## nicht synchronisieren:
|
||
|
!/build
|
||
|
|
||
|
################################################################
|
||
|
# ARTEFACTS
|
||
|
################################################################
|
||
|
|
||
|
/**/__pycache__
|
||
|
/**/.DS_Store
|
||
|
/**/__archive__*
|