aboutsummaryrefslogtreecommitdiff
path: root/cmd
AgeCommit message (Collapse)Author
2023-08-05ref: Move net/httpGabriel Arakaki Giovanini
I was young and naive, fasthttp does not fit my needs and make development slower. I'll move to net/http since it has a wider support and will spare some time on implementation detail things (like CSRF). It will allow me to reduce a bit of the code since there may be lib for handling cookie encryption and auth in general.
2023-07-22feat: Add user managementGabriel Arakaki Giovanini
As many things it is on crude state. The settings.go has become a big mess, but I have achieve MVP, so from now one things shall improve as I'll spent more time on refactoring.
2023-07-20feat: Add option to preload metadataGabriel Arakaki Giovanini
Let the use pick if they want to preload videos' metadata.
2023-07-20feat: Fix video loading its full widthGabriel Arakaki Giovanini
2023-07-19ref: Remove static fs on rootGabriel Arakaki Giovanini
Go embed does allow to load parent folder, so I move static fs to static folder as I think it fits better there than in the root of the project.
2023-07-18feat: Move to user path mediaGabriel Arakaki Giovanini
Now media also base on user folder to fetch its media.
2023-07-04feat: Add use based file scannerGabriel Arakaki Giovanini
2023-07-04feat: Add user based filesGabriel Arakaki Giovanini
Now files follow user path configuration
2023-07-03fix: Fix content typeGabriel Arakaki Giovanini
Content type was always being set to `text/html`. Also swap lib for processing thumbnail for something that accepts HEIC.
2023-07-01feat: Add thumbnailerGabriel Arakaki Giovanini
2023-06-29ref: Move all controller under the same folderGabriel Arakaki Giovanini
Move all controller to the same folder and rename them to service. Moving them to the same folder allow an easier setup for testing.
2023-06-29ref: Move away other repositoriesGabriel Arakaki Giovanini
Finish moving all repositories to a repository package. This should reduce the amount of packages.
2023-06-26feat: Add initial user setupGabriel Arakaki Giovanini
2023-06-26feat: Add scheduler to chan processorGabriel Arakaki Giovanini
2023-06-25feat: Add user list UIGabriel Arakaki Giovanini
Fill user settings UI with actual data.
2023-06-25feat: Add static file to output binGabriel Arakaki Giovanini
Now the final binary has a standalone web server including necessary static file.
2023-06-25feat: Remove unnecessary functionGabriel Arakaki Giovanini
2023-06-24ref: Rename list to batch processorGabriel Arakaki Giovanini
2023-06-24feat: Add log to list list processorGabriel Arakaki Giovanini
2023-06-24feat: Add scheduler againGabriel Arakaki Giovanini
Since I have fixed the issue with the `SIGTINT` hanging the application I can readd the scheduler once more. Also move the param for amount of scheduler work.
2023-06-23feat: Remove unecessary param from repoGabriel Arakaki Giovanini
2023-06-18feat: Move params to flagsGabriel Arakaki Giovanini
Start using flags to set some params like key and database connection. As a flag parse I opt for a lib that uses posix style params.
2023-06-18fix: Fix linter issuesGabriel Arakaki Giovanini
2023-06-18feat: Inicial commitGabriel Arakaki Giovanini
It contains rough template for the server and runners. It contains rough template for the server and runners.