-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #119 from cevi/dev
Release 3.0.0 - Interactive exports: modify the selected waypoints using points of interest (POI) - Improved Documentation and Changelog (on this page) - combine all maps in a single PDF file - Bug fixes - Dependency updates
- Loading branch information
Showing
218 changed files
with
39,787 additions
and
18,180 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
# Configuration for the angular application: development or production | ||
ANGULAR_BUILD_MODE=dev | ||
BACKEND_DOMAIN=http://awt-backend:5000 | ||
DOCS_DOMAIN=http://awt-docs:4000 | ||
FRONTEND_DOMAIN=http://awt-frontend | ||
|
||
# Configures the logging level for the backend | ||
# valid values are DEBUG, INFO, WARNING, ERROR or CRITICAL | ||
LOG_LEVEL=INFO |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
# Configuration for the angular application: development or production | ||
ANGULAR_BUILD_MODE=dev | ||
BACKEND_DOMAIN=http://localhost:5000 | ||
DOCS_DOMAIN=http://localhost:4000 | ||
FRONTEND_DOMAIN=http://localhost | ||
|
||
# Configures the logging level for the backend | ||
# valid values are DEBUG, INFO, WARNING, ERROR or CRITICAL | ||
LOG_LEVEL=DEBUG |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
# Configuration for the angular application: development or production | ||
ANGULAR_BUILD_MODE=dev | ||
BACKEND_DOMAIN=https://backend.dev.map.cevi.tools/ | ||
DOCS_DOMAIN=http://docs.dev.map.cevi.tools | ||
FRONTEND_DOMAIN=https://dev.map.cevi.tools | ||
|
||
# Configures the logging level for the backend | ||
# valid values are DEBUG, INFO, WARNING, ERROR or CRITICAL | ||
LOG_LEVEL=INFO |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
# Configuration for the angular application: development or production | ||
ANGULAR_BUILD_MODE=production | ||
BACKEND_DOMAIN=https://backend.map.cevi.tools | ||
DOCS_DOMAIN=http://docs.map.cevi.tools | ||
FRONTEND_DOMAIN=https://map.cevi.tools | ||
|
||
# Configures the logging level for the backend | ||
# valid values are DEBUG, INFO, WARNING, ERROR or CRITICAL | ||
LOG_LEVEL=INFO |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
name: End2End Testing with Cypress | ||
on: | ||
push: | ||
{} | ||
|
||
jobs: | ||
test: | ||
runs-on: ubuntu-latest | ||
steps: | ||
# Checkout the source code | ||
- name: 🛎️ Checkout | ||
uses: actions/checkout@v2 | ||
|
||
# Restores the cache if it exists. | ||
- name: ⛏ Restore docker image from cache | ||
uses: satackey/[email protected] | ||
continue-on-error: true | ||
|
||
- name: 🏗️ Build the stack | ||
run: docker-compose -f docker-compose.yml -f docker-compose.ci-testing.yml build | ||
|
||
- name: 🚀 Run cypress (e2e tests) | ||
run: docker-compose -f docker-compose.yml -f docker-compose.ci-testing.yml up --exit-code-from awt-cypress |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -12,17 +12,25 @@ jobs: | |
devBuild: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v2 | ||
|
||
- name: Login to Docker Hub | ||
# Checkout the source code | ||
- name: 🛎️ Checkout | ||
uses: actions/checkout@v2 | ||
|
||
# Restores the cache if it exists. | ||
- name: ⛏ Restore docker image from cache | ||
uses: satackey/[email protected] | ||
continue-on-error: true | ||
|
||
- name: 🔐 Login to Docker Hub | ||
uses: docker/login-action@v2 | ||
with: | ||
registry: registry.cevi.tools | ||
username: ${{ secrets.DOCKERHUB_USERNAME }} | ||
password: ${{ secrets.DOCKERHUB_TOKEN }} | ||
|
||
- name: Build the stack | ||
run: docker-compose -f docker-compose.yml -f docker-compose.dev-build.yml build | ||
- name: 🏗️ Build the stack | ||
run: docker-compose -f docker-compose.yml -f docker-compose.prod-dev.yml build | ||
|
||
- name: Push containers to registry | ||
run: docker-compose -f docker-compose.yml -f docker-compose.dev-build.yml push | ||
- name: 🚀 Push containers to registry | ||
run: docker-compose -f docker-compose.yml -f docker-compose.prod-dev.yml push |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -12,17 +12,25 @@ jobs: | |
prodBuild: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v2 | ||
|
||
- name: Login to Docker Hub | ||
# Checkout the source code | ||
- name: 🛎️ Checkout | ||
uses: actions/checkout@v2 | ||
|
||
# Restores the cache if it exists. | ||
- name: ⛏ Restore docker image from cache | ||
uses: satackey/[email protected] | ||
continue-on-error: true | ||
|
||
- name: 🔐 Login to Docker Hub | ||
uses: docker/login-action@v2 | ||
with: | ||
registry: registry.cevi.tools | ||
username: ${{ secrets.DOCKERHUB_USERNAME }} | ||
password: ${{ secrets.DOCKERHUB_TOKEN }} | ||
|
||
- name: Build the stack | ||
run: docker-compose --env-file prod.env build | ||
- name: 🏗️ Build the stack | ||
run: docker-compose -f docker-compose.yml -f docker-compose.prod-latest.yml build | ||
|
||
- name: Push containers to registry | ||
run: docker-compose push | ||
- name: 🚀 Push containers to registry | ||
run: docker-compose -f docker-compose.yml -f docker-compose.prod-latest.yml push |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
python_program/.idea | ||
backend/.idea | ||
.idea | ||
swiss_TLM_api/map_snipped.png | ||
swiss_TLM_api/index_cache/index_cache.tar.xz |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
input | ||
output |
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.