bump, add /info endpoint, cleanup
This commit is contained in:
parent
0ceb0b61b4
commit
da82475262
4 changed files with 74 additions and 12 deletions
25
server/config/config.example.ts
Normal file
25
server/config/config.example.ts
Normal file
|
@ -0,0 +1,25 @@
|
|||
export const config: Config = {
|
||||
name: "Example Server", // what your server should be named in BeeSrv
|
||||
author: "example", // who owns this server?
|
||||
channelLink: "https://t.me/example", // telegram channel link
|
||||
|
||||
currentBox: {
|
||||
enabled: true, // if you want to serve the box, set to true
|
||||
name: "Example Beebox", // what your box should be named in BeeSrv
|
||||
originalAuthor: "Author", // who originally shared the beebox, if applicable
|
||||
},
|
||||
}
|
||||
|
||||
|
||||
|
||||
// don't change this
|
||||
export interface Config {
|
||||
name: string
|
||||
author: string
|
||||
channelLink: string
|
||||
currentBox: {
|
||||
enabled: boolean
|
||||
name: string
|
||||
originalAuthor: string
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue