mirror of
https://gitlab.rlp.net/proj-wise2526-video2document/video2document.git
synced 2026-06-15 18:01:52 +02:00
b5fe3f3b0c
Added basic modules for the trascription tool Assembly and the Documentation tool ChatGPT
13 lines
542 B
JavaScript
13 lines
542 B
JavaScript
module.exports = {
|
|
database:{
|
|
/*
|
|
Here is an example structure of the config file
|
|
You can ofcourse change anything here to suit your needs
|
|
This structure is useful if you are using a mysql/mariadb database for example
|
|
*/
|
|
host:"", // Server IP and port if you have set a different port
|
|
username:"", // Username for the database user
|
|
password:"", // Password for the database user
|
|
database:"" // Name of the database
|
|
}
|
|
} |