diff --git a/.squash.yml b/.squash.yml index bda6a23..9d55f62 100644 --- a/.squash.yml +++ b/.squash.yml @@ -5,11 +5,21 @@ deployments: TEST_VAL=42 ready_wait: 120 backend_wait: 20 + domain: + - squashlabs.co + - deployster.io + - codescore.io subdomain_port_mapping: - test:81 - test--test:81 - another-test:8000 - and--another-test:8000 + subdomains: + Awesome Name: + - test,/about + - awesomedomain,/?que=99764QQ + Awesomness x3: + - plain deployment_page_commands: list something: - ls -la ./ @@ -34,9 +44,9 @@ deployments: Awesome Name: - awesomedomain,/?que=99764QQ Awesomness x2: - - subd,/abc + - subd,/abc Awesomness x3: - - plain + - plain deployment_page_commands: list something: - ls -la ./ diff --git a/docker-compose.yml b/docker-compose.yml index 0a68712..012ecbe 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -3,7 +3,7 @@ services: stuff-service: build: ./stuff ports: - - 80:80 + - 81:80 environment: - TEST_VAL - SQUASH_BRANCH_WITH_ID diff --git a/stuff/server.py b/stuff/server.py index 8db5d93..757d1ae 100644 --- a/stuff/server.py +++ b/stuff/server.py @@ -17,7 +17,7 @@ def run_job(): thread.start() -@app.route('/') +@app.route('/test/') def index(): logging.warning(request.referrer) return '
Hello world. About this page.'