Add banner to README

This commit is contained in:
Tobias B 2021-11-14 12:08:42 +01:00
parent 0ca94eeebf
commit 8c4b666438
No known key found for this signature in database
GPG Key ID: 5EF4C92355A3B53D
4 changed files with 11 additions and 2 deletions

BIN
.github/assets/aqua_banner.png vendored Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 50 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 67 KiB

View File

@ -1 +1,9 @@
# aqua
# aqua
![aqua_banner](./.github/assets/aqua_banner.png)
---
**aqua** is a simple file uploading and sharing server for personal use. It is built to be easy to set up and host on your own server.
It is the successor/rework of my previous project [lightf](https://github.com/Superioz/lightf), but this time without trying weird things out and building a complete product instead.

View File

@ -10,11 +10,12 @@ import (
)
// TODO Add cleanup process, to delete all images that are not in the sqlite or that are expired
// TODO make file storage (not metadata) an adapter (AddFile, RemoveFile)
func main() {
err := godotenv.Load()
if err != nil {
klog.Fatal("Error loading .env file")
klog.Warningln("Error loading .env file: %v", err)
}
klog.Infoln("Hello World!")