This commit is contained in:
Qumolama.d
2022-05-02 23:12:46 +08:00
commit 3de6ad9a2a
15 changed files with 3546 additions and 0 deletions

14
src/config.js Normal file
View File

@ -0,0 +1,14 @@
export const config = {
database: {
url: 'mongodb://localhost:27017',
db: 'yggdrasil'
},
server: {
port: 3000,
url: '',
},
signing: {
public: '/path/to/public.pem',
private: '/path/to/private.key'
}
}