generated from imperial/impaas-template
-
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 branch 'main' into style-responsiveness
- Loading branch information
Showing
47 changed files
with
695 additions
and
223 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 |
---|---|---|
|
@@ -4,30 +4,26 @@ | |
# In production, set the appropriate environment variables on impaas (see README) | ||
# ======================= | ||
|
||
# Login details for the mysql | ||
# ImPaaS will provide these details in prod, but you will need a dev database regardless for local development. | ||
# We recommend running a local mysql instance using docker and exposing port 3306 for local development | ||
# (see mysql docker image README) | ||
MYSQL_USER= | ||
MYSQL_DATABASE_NAME= | ||
MYSQL_HOST= | ||
MYSQL_PORT= | ||
MYSQL_PASSWORD= | ||
# Login details for postgres database | ||
# Replace "postgres:postgres" with "<username>:<password>" | ||
# And cpp-connect with the name of the database you are using | ||
DATABASE_URL="postgres://postgres:postgres@localhost:5432/cpp-connect" | ||
|
||
# ====================== | ||
# These variables below will need to be manually provided to ImPaaS in production | ||
# ====================== | ||
# Root dir to store uploaded files | ||
# If you choose to change this environment variable, add the chosen directory to the .tsuruignore file | ||
UPLOAD_DIR=./uploads | ||
# Azure AD details - see README | ||
AZURE_AD_CLIENT_ID= | ||
AZURE_AD_CLIENT_SECRET= | ||
AZURE_AD_TENANT_ID= | ||
# MS Entra SSO details - see README | ||
MS_ENTRA_CLIENT_ID= | ||
MS_ENTRA_CLIENT_SECRET= | ||
MS_ENTRA_TENANT_ID= | ||
# Secret for generates auth tokes (generate using `npx auth secret`) | ||
AUTH_SECRET= # Run `npx auth secret`. Read more: https://cli.authjs.dev | ||
|
||
# Comma separate list of allowed admins | ||
# Comma separate list of allowed admins. By default these users will receive the admin role on SSO login | ||
# Edit this list to add/remove admins | ||
# NOTE: MUST be the full email in the below format | ||
CPP_ALLOWED_ADMINS="[email protected],[email protected]" | ||
|
||
|
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
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,6 @@ | ||
.logo { | ||
flex-grow: 1; | ||
object-fit: contain; | ||
width: 100%; | ||
height: auto; | ||
} |
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.