forked from govcms-tests/tests
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathTiltfile
More file actions
21 lines (18 loc) · 659 Bytes
/
Tiltfile
File metadata and controls
21 lines (18 loc) · 659 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
# Welcome to GovCMS!
print("""
-----------------------------------------------------------------
✨ Hello GovCMS!
-----------------------------------------------------------------
""".strip())
# Include development services and sites
docker_compose('./docker-compose.yml')
DOCKER_COMPOSE_LOCAL = os.path.exists('./docker-compose.override.yml')
if DOCKER_COMPOSE_LOCAL:
docker_compose('./docker-compose.override.yml')
# Good bye
if config.tilt_subcommand == 'down':
print("""
-----------------------------------------------------------------
✨ GovCMS Ops Team
-----------------------------------------------------------------
""".strip())