Compare commits

..

6 Commits

Author SHA1 Message Date
29cd7dce82 Update bewcloud.config.ts
Some checks failed
Build Docker Image / build-and-push (push) Has been cancelled
Deploy / deploy (push) Has been cancelled
Run Tests / test (push) Has been cancelled
2025-12-08 15:18:22 +00:00
Tim Bendt
6f8a27df64 fix url in config
Some checks failed
Build Docker Image / build-and-push (push) Has been cancelled
Deploy / deploy (push) Has been cancelled
Run Tests / test (push) Has been cancelled
2025-12-01 09:17:58 -05:00
Tim Bendt
137ac0eb58 configure internal radicale host
Some checks failed
Build Docker Image / build-and-push (push) Has been cancelled
Deploy / deploy (push) Has been cancelled
Run Tests / test (push) Has been cancelled
2025-12-01 09:05:46 -05:00
Tim Bendt
521bd5f05c needed the config in the repo
Some checks failed
Build Docker Image / build-and-push (push) Has been cancelled
Deploy / deploy (push) Has been cancelled
Run Tests / test (push) Has been cancelled
2025-12-01 08:58:32 -05:00
Tim Bendt
747874c925 mostly unneeded
Some checks failed
Build Docker Image / build-and-push (push) Has been cancelled
Deploy / deploy (push) Has been cancelled
Run Tests / test (push) Has been cancelled
2025-12-01 08:42:13 -05:00
Tim Bendt
8889eb10ce ready for prod?
Some checks failed
Build Docker Image / build-and-push (push) Has been cancelled
Deploy / deploy (push) Has been cancelled
Run Tests / test (push) Has been cancelled
2025-11-30 20:23:40 -05:00
4 changed files with 16 additions and 16 deletions

View File

@@ -2,14 +2,14 @@ PORT=8000
POSTGRESQL_HOST="postgresql" # docker container name or external hostname/IP
POSTGRESQL_USER="postgres"
POSTGRESQL_PASSWORD="fake"
POSTGRESQL_PASSWORD="df7c6935a6ff"
POSTGRESQL_DBNAME="bewcloud"
POSTGRESQL_PORT=5432
POSTGRESQL_CAFILE=""
JWT_SECRET="fake"
PASSWORD_SALT="fake"
JWT_SECRET="zfl655gcdax8hg9dp5fb47qk2"
PASSWORD_SALT="5a9bbb7d546"
EOF
MFA_KEY="fake" # optional, if you want to enable multi-factor authentication
MFA_SALT="fake" # optional, if you want to enable multi-factor authentication

2
.gitignore vendored
View File

@@ -14,7 +14,7 @@ db/
data-files/
# Config
bewcloud.config.ts
# Radicale files
data-radicale/

View File

@@ -3,8 +3,8 @@ import { Config, PartialDeep } from './lib/types.ts';
/** Check the Config type for all the possible options and instructions. */
const config: PartialDeep<Config> = {
auth: {
baseUrl: 'http://localhost:8000', // The base URL of the application you use to access the app, i.e. "http://localhost:8000" or "https://cloud.example.com" (note authentication won't work without https:// except for localhost; SSO redirect, if enabled, will be this + /oidc/callback, so "https://cloud.example.com/oidc/callback")
allowSignups: false, // If true, anyone can sign up for an account. Note that it's always possible to sign up for the first user, and they will be an admin
baseUrl: 'https://cloud.bendtstudio.com', // The base URL of the application you use to access the app, i.e. "http://localhost:8000" or "https://cloud.example.com" (note authentication won't work without https:// except for localhost; SSO redirect, if enabled, will be this + /oidc/callback, so "https://cloud.example.com/oidc/callback")
allowSignups: true, // If true, anyone can sign up for an account. Note that it's always possible to sign up for the first user, and they will be an admin
enableEmailVerification: false, // If true, email verification will be required for signups (using SMTP settings below)
enableForeverSignup: true, // If true, all signups become active for 100 years
enableMultiFactor: false, // If true, users can enable multi-factor authentication (TOTP, Passkeys, or Email if the SMTP settings below are set)
@@ -33,14 +33,14 @@ const config: PartialDeep<Config> = {
// host: 'localhost',
// port: 465,
// },
// contacts: {
// enableCardDavServer: true,
// cardDavUrl: 'http://radicale:5232',
// },
// calendar: {
// enableCalDavServer: true,
// calDavUrl: 'http://radicale:5232',
// },
contacts: {
enableCardDavServer: true,
cardDavUrl: 'http://cloud-radicale-wqldcv:5232',
},
calendar: {
enableCalDavServer: true,
calDavUrl: 'http://cloud-radicale-wqldcv:5232',
},
};
export default config;

View File

@@ -16,7 +16,7 @@ services:
image: postgres:17
environment:
- POSTGRES_USER=postgres
- POSTGRES_PASSWORD=fake
- POSTGRES_PASSWORD=df7c6935a6ff
- POSTGRES_DB=bewcloud
restart: always
volumes: