-
Notifications
You must be signed in to change notification settings - Fork 1
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 #36 from ropable/master
Additional KMI spatial layer checks
- Loading branch information
Showing
9 changed files
with
731 additions
and
491 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
version: 2 | ||
updates: | ||
- package-ecosystem: "pip" | ||
directory: "/" | ||
schedule: | ||
interval: "weekly" | ||
- package-ecosystem: "github-actions" | ||
# Workflow files stored in the | ||
# default location of `.github/workflows` | ||
directory: "/" | ||
schedule: | ||
interval: "weekly" |
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 |
---|---|---|
|
@@ -20,13 +20,8 @@ Manage new or updating project dependencies with Poetry also, like so: | |
|
||
# Environment variables | ||
|
||
This project uses **django-confy** to set environment variables (in a `.env` file). | ||
The following variables are required for the project to run (others have | ||
default values): | ||
|
||
RT_URL=https://resourcetracking.dbca.wa.gov.au | ||
[email protected] | ||
PASS_SSO=password | ||
This project uses **python-dotenv** to set environment variables (in a `.env` file). | ||
Most settings have default values; check `status.py` for required variables. | ||
|
||
# Running | ||
|
||
|
@@ -43,6 +38,6 @@ To build a new Docker image from the `Dockerfile`: | |
|
||
docker image build -t ghcr.io/dbca-wa/healthcheck . | ||
|
||
To run a Docker container locally, publishing port 8080 to a different local port: | ||
To run a Docker container locally, publishing container port 8080 to a local port: | ||
|
||
docker container run --rm --publish 8211:8080 --env-file .env ghcr.io/dbca-wa/healthcheck | ||
docker container run --rm --publish 8080:8080 --env-file .env ghcr.io/dbca-wa/healthcheck |
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
Oops, something went wrong.