* Rename archives to orgs and aid to oid on backend * Rename archive to org and aid to oid in frontend * Remove translation artifact * Rename team -> organization * Add database migrations and run once on startup * This commit also applies the new by_one_worker decorator to other asyncio tasks to prevent heavy tasks from being run in each worker. * Run black, pylint, and husky via pre-commit * Set db version and use in migrations * Update and prepare database in single task * Migrate k8s configmaps
42 lines
1.1 KiB
YAML
42 lines
1.1 KiB
YAML
# Local Config
|
|
# ------------
|
|
|
|
# This config is designed for local (non-hosted) use, with either Docker Desktop, minikube or local microk8s.
|
|
# With this setup, the cluster should be accessed locally via 'localhost'
|
|
|
|
# run service on localhost on port
|
|
local_service_port: 30870
|
|
|
|
default_org: "My Local Organization"
|
|
|
|
# overrides to use existing images in local Docker, otherwise will pull from latest
|
|
# api_pull_policy: "Never"
|
|
# nginx_pull_policy: "Never"
|
|
# crawler_pull_policy: "Never"
|
|
# redis_pull_policy: "Never"
|
|
|
|
|
|
# microk8s: if developing locally, can override these to use images from local microk8s repository (on localhost:32000)
|
|
# api_image: "localhost:32000/webrecorder/browsertrix-backend:latest"
|
|
# nginx_image: "localhost:32000/webrecorder/browsertrix-frontend:latest"
|
|
|
|
|
|
# optionally, override default mongodb auth, used for all data storage:
|
|
|
|
#mongo_auth:
|
|
#username: root
|
|
#password: PASSWORD!
|
|
|
|
|
|
# optionally, set these to custom values
|
|
|
|
#superuser:
|
|
# set this to enable a superuser admim
|
|
# email: admin@example.com
|
|
|
|
# optional: if not set, automatically generated
|
|
# change or remove this
|
|
# password: PASSWORD!
|
|
|
|
|