created the main Project Folder

Configured the .gitignore
This commit is contained in:
Cametendo
2025-08-28 08:50:19 +02:00
parent 88c3c4c557
commit df6a5a256c
3 changed files with 37 additions and 1 deletions

9
.gitignore vendored
View File

@@ -19,6 +19,13 @@
*.tar.gz
*.rar
# virtual machine crash logs, see http://www.java.com/en/download/help/error_hotspot.xml
# virtual machine crash logs
hs_err_pid*
replay_pid*
#IntelliJ
# IntelliJ IDEA project files
.idea/
*.iml
/out/

29
Cards-Gate/.gitignore vendored Normal file
View File

@@ -0,0 +1,29 @@
### IntelliJ IDEA ###
out/
!**/src/main/**/out/
!**/src/test/**/out/
### Eclipse ###
.apt_generated
.classpath
.factorypath
.project
.settings
.springBeans
.sts4-cache
bin/
!**/src/main/**/bin/
!**/src/test/**/bin/
### NetBeans ###
/nbproject/private/
/nbbuild/
/dist/
/nbdist/
/.nb-gradle/
### VS Code ###
.vscode/
### Mac OS ###
.DS_Store

0
Cards-Gate/src/Main.java Normal file
View File