Multiple fixes and added article get endpoint for authors

This commit is contained in:
2022-02-02 16:00:56 +01:00
parent 6a6283f781
commit 3c8fd32345
11 changed files with 141 additions and 20 deletions

View File

@@ -9,7 +9,7 @@ var (
ServerPort string
Address string
Path string
SubPath string
DatabaseFile string
FrontendDir string
@@ -21,7 +21,7 @@ func init() {
ServerPort = os.Getenv("SERVER_PORT")
Address = os.Getenv("ADDRESS")
Path = os.Getenv("Path")
SubPath = os.Getenv("SUBPATH")
DatabaseFile = os.Getenv("DATABASE_FILE")
FrontendDir = os.Getenv("FRONTEND_DIR")