Compare commits
9 Commits
cal.com
...
0.1.0+v3.0
| Author | SHA1 | Date | |
|---|---|---|---|
| 88912b04e2 | |||
| 6ccdfb9a9f | |||
| d60f54c056 | |||
| dc1709be06 | |||
| 8f0289e018 | |||
| e759e2e7d3 | |||
| 4008d10055 | |||
| d35fcee091 | |||
| a21646fcba |
25
.drone.yml
25
.drone.yml
@ -3,10 +3,12 @@ kind: pipeline
|
||||
name: deploy to swarm-test.autonomic.zone
|
||||
steps:
|
||||
- name: deployment
|
||||
image: decentral1se/stack-ssh-deploy:latest
|
||||
image: git.coopcloud.tech/coop-cloud/stack-ssh-deploy:latest
|
||||
settings:
|
||||
host: swarm-test.autonomic.zone
|
||||
stack: calendso
|
||||
networks:
|
||||
- proxy
|
||||
purge: true
|
||||
deploy_key:
|
||||
from_secret: drone_ssh_swarm_test
|
||||
@ -33,24 +35,17 @@ trigger:
|
||||
|
||||
---
|
||||
kind: pipeline
|
||||
name: recipe release
|
||||
name: generate recipe catalogue
|
||||
steps:
|
||||
- name: release a new version
|
||||
image: decentral1se/drone-abra:latest
|
||||
settings:
|
||||
command: recipe calendso release
|
||||
deploy_key:
|
||||
from_secret: abra_bot_deploy_key
|
||||
|
||||
- name: trigger downstream builds
|
||||
image: plugins/downstream
|
||||
settings:
|
||||
server: https://drone.autonomic.zone
|
||||
server: https://build.coopcloud.tech
|
||||
token:
|
||||
from_secret: decentral1se_token
|
||||
from_secret: drone_abra-bot_token
|
||||
fork: true
|
||||
repositories:
|
||||
- coop-cloud/auto-apps-json
|
||||
depends_on:
|
||||
- release a new version
|
||||
version
|
||||
- coop-cloud/auto-recipes-catalogue-json
|
||||
|
||||
trigger:
|
||||
event: tag
|
||||
|
||||
@ -1,15 +1,14 @@
|
||||
TYPE=calendso
|
||||
TYPE=cal
|
||||
|
||||
DOMAIN=calendso.example.com
|
||||
DOMAIN=cal.example.com
|
||||
|
||||
## Domain aliases
|
||||
#EXTRA_DOMAINS=', `www.calendso.example.com`'
|
||||
LETS_ENCRYPT_ENV=production
|
||||
|
||||
SECRET_DB_PASSWORD_VERSION=v1
|
||||
|
||||
## Uncomment this to enable collection of anonymous usage data
|
||||
#NEXT_PUBLIC_TELEMETRY_KEY=js.2pvs2bbpqq1zxna97wcml.oi2jzirnbj1ev4tc57c5r
|
||||
SECRET_NEXTAUTH_SECRET_VERSION=v1
|
||||
SECRET_CALENDSO_ENCRYPTION_KEY_VERSION=v1
|
||||
|
||||
# This is here so later lines can extend it; you likely don't wanna edit
|
||||
COMPOSE_FILE="compose.yml"
|
||||
|
||||
@ -21,9 +21,9 @@ The open-source Calendly alternative.
|
||||
2. Deploy [`coop-cloud/traefik`]
|
||||
3. `abra app new ${REPO_NAME} --secrets` (optionally with `--pass` if you'd like
|
||||
to save secrets in `pass`)
|
||||
4. `abra app YOURAPPDOMAIN config` - be sure to change `$DOMAIN` to something that resolves to
|
||||
4. `abra app config YOURAPPDOMAIN` - be sure to change `$DOMAIN` to something that resolves to
|
||||
your Docker swarm box
|
||||
5. `abra app YOURAPPDOMAIN deploy`
|
||||
5. `abra app deploy YOURAPPDOMAIN`
|
||||
6. Open the configured domain in your browser to finish set-up
|
||||
|
||||
[`abra`]: https://git.coopcloud.tech/coop-cloud/abra
|
||||
|
||||
18
compose.yml
18
compose.yml
@ -3,20 +3,23 @@ version: "3.8"
|
||||
|
||||
services:
|
||||
app:
|
||||
image: 3wordchant/calendso:latest
|
||||
image: calcom.docker.scarf.sh/calcom/cal.com:v3.0.13
|
||||
networks:
|
||||
- proxy
|
||||
- backend
|
||||
secrets:
|
||||
- db_password
|
||||
- nextauth_secret
|
||||
- calendso_encryption_key
|
||||
environment:
|
||||
- POSTGRES_USER=calendso
|
||||
- POSTGRES_PASSWORD_FILE=/run/secrets/db_password
|
||||
- POSTGRES_DB=calendso
|
||||
- POSTGRES_HOST=db
|
||||
- "BASE_URL=${DOMAIN}"
|
||||
- "NEXTAUTH_URL=${DOMAIN}"
|
||||
- NEXT_PUBLIC_TELEMETRY_KEY
|
||||
- CALCOM_TELEMETRY_DISABLED=1
|
||||
- "NEXT_PUBLIC_WEBAPP_URL=https://${DOMAIN}"
|
||||
- NEXTAUTH_SECRET_FILE=/run/secrets/nextauth_secret
|
||||
- CALENDSO_ENCRYPTION_KEY_FILE=/run/secrets/calendso_encryption_key
|
||||
- MS_GRAPH_CLIENT_ID
|
||||
- ZOOM_CLIENT_ID
|
||||
- EMAIL_FROM
|
||||
@ -44,6 +47,7 @@ services:
|
||||
- "traefik.http.routers.${STACK_NAME}.entrypoints=web-secure"
|
||||
- "traefik.http.routers.${STACK_NAME}.tls.certresolver=${LETS_ENCRYPT_ENV}"
|
||||
- "traefik.http.routers.${STACK_NAME}.service=${STACK_NAME}"
|
||||
- "coop-cloud.${STACK_NAME}.version=0.1.0+v3.0.13"
|
||||
## Redirect from EXTRA_DOMAINS to DOMAIN
|
||||
#- "traefik.http.routers.${STACK_NAME}.middlewares=${STACK_NAME}-redirect"
|
||||
#- "traefik.http.middlewares.${STACK_NAME}-redirect.headers.SSLForceHost=true"
|
||||
@ -82,6 +86,12 @@ secrets:
|
||||
db_password:
|
||||
external: true
|
||||
name: ${STACK_NAME}_db_password_${SECRET_DB_PASSWORD_VERSION}
|
||||
nextauth_secret:
|
||||
external: true
|
||||
name: ${STACK_NAME}_nextauth_secret_${SECRET_NEXTAUTH_SECRET_VERSION}
|
||||
calendso_encryption_key:
|
||||
external: true
|
||||
name: ${STACK_NAME}_calendso_encryption_key_${SECRET_CALENDSO_ENCRYPTION_KEY_VERSION}
|
||||
|
||||
configs:
|
||||
entrypoint_conf:
|
||||
|
||||
@ -30,6 +30,8 @@ load_vars() {
|
||||
file_env "GOOGLE_API_CREDENTIALS"
|
||||
file_env "ZOOM_CLIENT_SECRET"
|
||||
file_env "EMAIL_SERVER_PASSWORD"
|
||||
file_env "NEXTAUTH_SECRET"
|
||||
file_env "CALENDSO_ENCRYPTION_KEY"
|
||||
|
||||
export "DATABASE_URL=postgresql://$POSTGRES_USER:$POSTGRES_PASSWORD@$POSTGRES_HOST:5432/$POSTGRES_DB"
|
||||
}
|
||||
@ -44,4 +46,4 @@ main
|
||||
|
||||
# 3wc: upstream CMD
|
||||
# https://github.com/calendso/docker/blob/main/Dockerfile
|
||||
/app/scripts/start.sh
|
||||
/calcom/scripts/start.sh
|
||||
|
||||
Reference in New Issue
Block a user