summaryrefslogtreecommitdiff
path: root/main.go (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Restrict instance level custom CSS to static directoryr2023-10-151-8/+1
|
* Disable access log by defaultr2023-09-091-15/+3
| | | | | | | | Access logs aren't really useful during normal operation. Add a new flag -v to enable the verbose logging mode, which is still useful during the development. Also remove the log_file config because it's no longer useful.
* Use cookies for session storager2022-10-251-23/+1
| | | | | | | | | Remove the server side session storage and store all the session related data in the client side cookies. This decreases the exposure of the auth tokens. It also simplifies the installation process as bloat no longer requires write access to the filesystem. This is a breaking change, all the existing sessions will stop working.
* Use GO's flag parser instead of getoptr2022-01-021-10/+5
| | | | There's only one flag, so it doesn't matter.
* Change config file lookupr2022-01-021-3/+3
| | | | | - Look for both local and global config file - Directly generate the global config file with make install
* Refactorr2021-03-281-20/+2
|
* Refactor thingsr2020-11-221-6/+3
| | | | | - Remove separate auth/logging and merge them into transport.go - Add helper function for http handlers
* Fix http clientr2020-10-301-0/+18
| | | | | - Remove automatic retries on 429 - Tweak http client config for better connection re-using
* Fix invalid CSS syntaxr2020-08-221-1/+1
|
* Refactor thingsr2020-05-241-6/+0
|
* Add single instance moder2020-04-191-1/+1
|
* Fix logfiler2020-02-261-1/+2
|
* Add install target for maker2020-01-311-1/+1
| | | | | - Update default config path accordingly - Mention use of config file in README
* Fix error printingr2020-01-281-9/+16
|
* Update configr2020-01-281-8/+12
|
* Refactor everythingr2020-01-281-3/+3
|
* Rename package to bloatr2020-01-011-6/+6
|
* Add command line flag to specify config filer2020-01-011-1/+18
|
* Add post format selectionr2019-12-261-1/+2
|
* Update header template and add option for custom cssr2019-12-251-1/+8
|
* Use filesystem based kv store instead of sqliter2019-12-171-8/+9
|
* Initial commitr2019-12-131-0/+76