Skip to content
Merged
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
2 changes: 2 additions & 0 deletions .github/workflows/backend-deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,8 @@ jobs:

- name: Execute Maven build
working-directory: backend
env:
OPENROUTESERVICE_API_KEY: ${{ secrets.OPENROUTESERVICE_API_KEY }}
run: mvn clean verify -Duser.timezone=Europe/Warsaw

- name: Upload build artifacts
Expand Down
3 changes: 3 additions & 0 deletions backend/src/test/resources/application.properties
Original file line number Diff line number Diff line change
Expand Up @@ -7,3 +7,6 @@ spring.datasource.username=test
spring.datasource.password=test

spring.jpa.hibernate.ddl-auto=create-drop

JWT_SERVICE_KEY=this_is_a_fake_secret_key_for_testing_purposes_only_make_it_long_enough
JWT_EXPIRATION=86400000
Loading