- Ajout de la configuration JSF/Quarkus - Ajout des contrôleurs et composants JSF - Ajout de la page d'accueil avec animations - Configuration Docker et environnement de build
107 lines
1.0 KiB
Plaintext
107 lines
1.0 KiB
Plaintext
# Maven
|
|
target/
|
|
pom.xml.tag
|
|
pom.xml.releaseBackup
|
|
pom.xml.versionsBackup
|
|
release.properties
|
|
.flattened-pom.xml
|
|
|
|
# Eclipse
|
|
.project
|
|
.classpath
|
|
.settings/
|
|
bin/
|
|
|
|
# IntelliJ
|
|
.idea/
|
|
*.ipr
|
|
*.iml
|
|
*.iws
|
|
|
|
# NetBeans
|
|
nb-configuration.xml
|
|
nbproject/
|
|
nbactions.xml
|
|
|
|
# Visual Studio Code
|
|
.vscode/
|
|
.factorypath
|
|
|
|
# OSX
|
|
.DS_Store
|
|
|
|
# Windows
|
|
Thumbs.db
|
|
Desktop.ini
|
|
|
|
# Vim
|
|
*.swp
|
|
*.swo
|
|
|
|
# patch
|
|
*.orig
|
|
*.rej
|
|
|
|
# Local environment
|
|
.env
|
|
.env.local
|
|
.env.*
|
|
|
|
# Quarkus
|
|
.quarkus/
|
|
/.quarkus/cli/plugins/
|
|
quarkus.log
|
|
hs_err_pid*
|
|
|
|
# Application Specific
|
|
.certs/
|
|
.certificates/
|
|
*.jks
|
|
*.p12
|
|
|
|
# Logs
|
|
*.log
|
|
log/
|
|
logs/
|
|
|
|
# Temporary files
|
|
*~
|
|
*.bak
|
|
*.tmp
|
|
temp/
|
|
|
|
# Node (in case you add frontend tools later)
|
|
node_modules/
|
|
npm-debug.log
|
|
yarn-debug.log
|
|
yarn-error.log
|
|
|
|
# Build output
|
|
dist/
|
|
build/
|
|
out/
|
|
|
|
# Application specific properties
|
|
src/main/resources/application-*.properties
|
|
!src/main/resources/application.properties
|
|
|
|
# Compiled files
|
|
*.class
|
|
*.jar
|
|
*.war
|
|
*.ear
|
|
*.zip
|
|
*.tar.gz
|
|
*.rar
|
|
|
|
# Test coverage
|
|
/coverage/
|
|
.nyc_output/
|
|
|
|
# Maven Wrapper
|
|
.mvn/
|
|
mvnw
|
|
mvnw.cmd
|
|
|
|
# Docker
|
|
.dockerignore |