mirror of
https://github.com/hedgedoc/hedgedoc.git
synced 2025-05-22 03:05:19 -04:00
Extend config with various options from 1.x
Signed-off-by: Philip Molares <philip.molares@udo.edu>
This commit is contained in:
parent
ce65f2c51a
commit
929795637a
13 changed files with 686 additions and 32 deletions
12
src/config/database-dialect.enum.ts
Normal file
12
src/config/database-dialect.enum.ts
Normal file
|
@ -0,0 +1,12 @@
|
|||
/*
|
||||
* SPDX-FileCopyrightText: 2021 The HedgeDoc developers (see AUTHORS file)
|
||||
*
|
||||
* SPDX-License-Identifier: AGPL-3.0-only
|
||||
*/
|
||||
|
||||
export enum DatabaseDialect {
|
||||
POSTGRES = 'postgres',
|
||||
MYSQL = 'mysql',
|
||||
MARIADB = 'mariadb',
|
||||
SQLITE = 'sqlite',
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue