Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -23,3 +23,11 @@ docker/data/
# Flowable
h2-database/
/h2-db/flyable.mv.db
settings-flowable.xml
.env
.npmrc
flyable-booking-portal/src/main/resources/static/**
flowable.license
settings-flowable.xml
flyable-booking-portal/frontend/.npmrc
flyable-booking-portal/frontend/.env
5 changes: 4 additions & 1 deletion .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@
{
"java.jdt.ls.vmargs": "-XX:+UseParallelGC -XX:GCTimeRatio=4 -XX:AdaptiveSizePolicyWeight=90 -Dsun.zip.disableMemoryMapping=true -Xmx2G -Xms100m -Xlog:disable",
"java.compile.nullAnalysis.mode": "automatic"
"java.compile.nullAnalysis.mode": "automatic",
"java.configuration.maven.userSettings": "/workspaces/flowable-training-getting-started/settings-flowable.xml",
"maven.dependency.enableConflictDiagnostics": false,
"maven.executable.preferMavenWrapper": false
}
7 changes: 4 additions & 3 deletions flyable-booking-portal/frontend/.env
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
# .env
FLYABLE_APP_API_HOST=localhost
FLYABLE_APP_API_PORT=8090
FLYABLE_APP_API_PORT=8093
FLYABLE_APP_API_PROTOCOL=http
FLYABLE_APP_API_BASE_PATH=
VITE_FLOWABLE_APP=http://localhost:8090
FLYABLE_APP_API_BASE_PATH=/
VITE_FLOWABLE_APP=http://localhost:8090
PUBLIC_URL=http://localhost:3000
1 change: 1 addition & 0 deletions flyable-booking-portal/frontend/.gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@
/build

# misc
.env
.DS_Store
.env.local
.env.development.local
Expand Down
Loading