mirror of
https://github.com/hedgedoc/hedgedoc.git
synced 2024-10-31 16:10:36 -04:00
e07cd62596
This rewrite follows the principles of https://diataxis.fr/ Co-authored-by: Erik Michelson <github@erik.michelson.eu> Signed-off-by: Philip Molares <philip.molares@udo.edu> Signed-off-by: Erik Michelson <github@erik.michelson.eu>
1.4 KiB
1.4 KiB
Database
We officially support and test these databases:
- SQLite (for development and smaller instances)
- PostgreSQL
- MariaDB
environment variable | default | example | description |
---|---|---|---|
HD_DATABASE_TYPE |
- | postgres |
The database type you want to use. This can be postgres , mysql , mariadb or sqlite . |
HD_DATABASE_NAME |
- | hedgedoc |
The name of the database to use. When using SQLite, this is the path to the database file. |
HD_DATABASE_HOST |
- | db.example.com |
The host, where the database runs. Only if you're not using sqlite . |
HD_DATABASE_PORT |
- | 5432 |
The port, where the database runs. Only if you're not using sqlite . |
HD_DATABASE_USER |
- | hedgedoc |
The user that logs in the database. Only if you're not using sqlite . |
HD_DATABASE_PASS |
- | password |
The password to log into the database. Only if you're not using sqlite . |