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
14 changes: 12 additions & 2 deletions .squash.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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 ./
Expand All @@ -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 ./
Expand Down
2 changes: 1 addition & 1 deletion docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ services:
stuff-service:
build: ./stuff
ports:
- 80:80
- 81:80
environment:
- TEST_VAL
- SQUASH_BRANCH_WITH_ID
Expand Down
2 changes: 1 addition & 1 deletion stuff/server.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ def run_job():
thread.start()


@app.route('/')
@app.route('/test/')
def index():
logging.warning(request.referrer)
return '<body>Hello world. <a href="/about/">About this page</a>.</body>'
Expand Down