master > master: .gitignore aufgeteilt
This commit is contained in:
parent
3a4702429b
commit
924104408f
15
.gitignore
vendored
15
.gitignore
vendored
@ -24,20 +24,9 @@
|
|||||||
!/scripts/*.sh
|
!/scripts/*.sh
|
||||||
|
|
||||||
!/code
|
!/code
|
||||||
!/code/**/
|
!/code/python
|
||||||
!/code/python/**/*.py
|
!/code/golang
|
||||||
!/code/golang/**/*.go
|
|
||||||
!/code/golang/go.mod
|
|
||||||
!/code/*/assets/VERSION
|
|
||||||
!/code/*/assets/LOGO
|
|
||||||
!/code/*/assets/config.yml
|
|
||||||
!/code/*/README.md
|
|
||||||
!/code/*/requirements
|
|
||||||
!/code/config.yml
|
!/code/config.yml
|
||||||
## nicht synchronisieren:
|
|
||||||
/code/golang/go.sum
|
|
||||||
/code/python/build
|
|
||||||
/code/python/build/**
|
|
||||||
|
|
||||||
!/dist
|
!/dist
|
||||||
!/dist/VERSION
|
!/dist/VERSION
|
||||||
|
32
code/golang/.gitignore
vendored
Normal file
32
code/golang/.gitignore
vendored
Normal file
@ -0,0 +1,32 @@
|
|||||||
|
*
|
||||||
|
!/.gitignore
|
||||||
|
|
||||||
|
################################################################
|
||||||
|
# MAIN FOLDER
|
||||||
|
################################################################
|
||||||
|
|
||||||
|
!/Makefile
|
||||||
|
!/README.md
|
||||||
|
!/requirements
|
||||||
|
|
||||||
|
################################################################
|
||||||
|
# PROJECT FILES
|
||||||
|
################################################################
|
||||||
|
|
||||||
|
!/assets
|
||||||
|
!/assets/VERSION
|
||||||
|
!/assets/LOGO
|
||||||
|
!/assets/config.yml
|
||||||
|
|
||||||
|
!/internal
|
||||||
|
!/pkg
|
||||||
|
!/**/*.go
|
||||||
|
!/go.mod
|
||||||
|
!/go.sum
|
||||||
|
|
||||||
|
################################################################
|
||||||
|
# ARTEFACTS
|
||||||
|
################################################################
|
||||||
|
|
||||||
|
/**/.DS_Store
|
||||||
|
/**/__archive__*
|
38
code/python/.gitignore
vendored
Normal file
38
code/python/.gitignore
vendored
Normal file
@ -0,0 +1,38 @@
|
|||||||
|
*
|
||||||
|
!/.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__*
|
Loading…
x
Reference in New Issue
Block a user