-
Notifications
You must be signed in to change notification settings - Fork 0
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 #5 from lsst-sqre/tickets/DM-32386
[DM-32386] Fixes found during test deployment
- Loading branch information
Showing
34 changed files
with
516 additions
and
184 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
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,23 @@ | ||
# Run Redis and PostgreSQL for testing with a local development server. | ||
# This is used by tox -e run, which starts gafaelfawr in the foreground. | ||
|
||
version: "3" | ||
services: | ||
redis: | ||
image: "redis:latest" | ||
hostname: "redis" | ||
container_name: "redis" | ||
command: | ||
- "redis-server" | ||
ports: | ||
- "6379:6379" | ||
postgresql: | ||
image: "postgres:latest" | ||
hostname: "postgresql" | ||
container_name: "postgresql" | ||
environment: | ||
POSTGRES_PASSWORD: "INSECURE-PASSWORD" | ||
POSTGRES_USER: "vo-cutouts" | ||
POSTGRES_DB: "vo-cutouts" | ||
ports: | ||
- "5432:5432" |
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
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
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,10 @@ | ||
#!/bin/bash | ||
# | ||
# Start the vo-cutouts frontend application. Currently creates the database | ||
# and then starts the server. Eventually, this will call Alembic to handle | ||
# database migrations. | ||
|
||
set -eu | ||
|
||
vo-cutouts init | ||
uvicorn vocutouts.main:app --host 0.0.0.0 --port 8080 |
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.