Skip to content

Commit

Permalink
undo some dev changes
Browse files Browse the repository at this point in the history
  • Loading branch information
michaelkirk committed Mar 1, 2024
1 parent ba18ccd commit 79e358f
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 13 deletions.
8 changes: 4 additions & 4 deletions docker-compose-with-transit.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -47,8 +47,8 @@ services:
condition: service_completed_successfully
networks:
- otp_backend
ports:
- "9001:8000"
# ports:
# - "9001:8000"
travelmux:
image: ghcr.io/headwaymaps/travelmux:latest
restart: always
Expand Down Expand Up @@ -166,8 +166,8 @@ services:
condition: service_healthy
pelias-config-init:
condition: service_completed_successfully
ports:
- "4000:4000"
# ports:
# - "4000:4000"
pelias-placeholder:
image: pelias/placeholder:master
restart: always
Expand Down
19 changes: 10 additions & 9 deletions services/frontend/www-app/quasar.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -55,9 +55,10 @@ module.exports = configure(function (/* ctx */) {
node: 'node16',
},

vueRouterMode: 'hash', // available values: 'hash', 'history'
vueRouterMode: 'history', // available values: 'hash', 'history'
// Use this for dev where we don't have mod_rewrite, otherwise refreshing page 404's
// vueRouterMode: 'hash',

// vueRouterBase,
// vueDevtools,
// vueOptionsAPI: false,
Expand Down Expand Up @@ -106,16 +107,16 @@ module.exports = configure(function (/* ctx */) {
// rewrite: (path) => path.replace(/^\/tileserver/, ''),
},
'/pelias': {
// target: HEADWAY_HOST,
// changeOrigin: true,
target: 'http://0.0.0.0:4000',
rewrite: (path) => path.replace(/^\/pelias/, ''),
target: HEADWAY_HOST,
changeOrigin: true,
// target: 'http://0.0.0.0:4000',
// rewrite: (path) => path.replace(/^\/pelias/, ''),
},
'/travelmux': {
// target: HEADWAY_HOST,
// changeOrigin: true,
target: 'http://0.0.0.0:8000',
rewrite: (path) => path.replace(/^\/travelmux/, ''),
target: HEADWAY_HOST,
changeOrigin: true,
// target: 'http://0.0.0.0:8000',
// rewrite: (path) => path.replace(/^\/travelmux/, ''),
},
},
},
Expand Down

0 comments on commit 79e358f

Please sign in to comment.