Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add digital ocean button #583

Open
wants to merge 11 commits into
base: main
Choose a base branch
from
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
53 changes: 53 additions & 0 deletions .do/deploy.template.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,53 @@
spec:
name: saml-jackson
services:
- name: web
build_command: npm run build
run_command: npm run start
git:
branch: release
repo_clone_url: https://github.com/boxyhq/jackson.git
envs:
# Jackson settings
- key: EXTERNAL_URL
G3root marked this conversation as resolved.
Show resolved Hide resolved
value: ${APP_URL}
- key: SAML_AUDIENCE
value: 'https://saml.boxyhq.com'
- key: JACKSON_API_KEYS
- key: IDP_ENABLED
- key: PRE_LOADED_CONFIG
- key: CLIENT_SECRET_VERIFIER

# Database settings
- key: DB_ENGINE
value: 'sql'
- key: DB_URL
- key: DB_TYPE
value: 'postgres'
- key: DB_TTL
value: '300'
- key: DB_CLEANUP_LIMIT
value: '1000'
- key: DB_PAGE_LIMIT
value: '50'
- key: DB_ENCRYPTION_KEY
# Admin UI settings
- key: SMTP_HOST
- key: SMTP_PORT
- key: SMTP_USER
- key: SMTP_PASSWORD
- key: SMTP_FROM
- key: NEXTAUTH_URL
G3root marked this conversation as resolved.
Show resolved Hide resolved
value: ${APP_URL}
- key: NEXTAUTH_SECRET
- key: NEXTAUTH_ACL

# OpenTelemetry
- key: OTEL_EXPORTER_OTLP_METRICS_ENDPOINT
- key: OTEL_EXPORTER_OTLP_HEADERS

- key: OPENID_JWS_ALG

# JWT signing keys
- key: OPENID_RSA_PRIVATE_KEY
- key: OPENID_RSA_PUBLIC_KE
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@

[![Deploy with Vercel](https://vercel.com/button)](<https://vercel.com/new/clone?repository-url=https%3A%2F%2Fgithub.com%2Fboxyhq%2Fjackson&env=DB_ENGINE,DB_TYPE,DB_URL,DB_ENCRYPTION_KEY,DB_TTL,DB_CLEANUP_LIMIT,JACKSON_API_KEYS,EXTERNAL_URL,IDP_ENABLED,SAML_AUDIENCE,CLIENT_SECRET_VERIFIER,SMTP_HOST,SMTP_PORT,SMTP_USER,SMTP_PASSWORD,SMTP_FROM,NEXTAUTH_URL,NEXTAUTH_SECRET,NEXTAUTH_ACL&envDescription=DB%20configuration%20and%20keys%20for%20encryption%20and%20authentication.EXTERNAL_URL%20(Usually%20https%3A%2F%2F%3Cproject-name-from-above%3E.vercel.app)%20can%20be%20set%20after%20deployment%20from%20the%20project%20dashboard.Set%20to%20''%20if%20not%20applicable.&envLink=https://boxyhq.com/docs/jackson/deploy/env-variables>)
[![Deploy](https://www.herokucdn.com/deploy/button.svg)](https://heroku.com/deploy)
[![Deploy to DO](https://www.deploytodo.com/do-btn-blue-ghost.svg)](https://cloud.digitalocean.com/apps/new?repo=https://github.com/boxyhq/jackson/tree/main)

SAML SSO service

Expand Down
Loading