Go to file
Hayden 2b79788fbe feat: user defined currencies (#700)
* basic currency service for loading at runtime

* api endpoint for currencies

* sort slice before return

* remove currency validation

* validate using currency service

* implement selecting dynamic currency options

* bump go version

* fix type definition

* specify explicit type

* change go versions

* proper types for assetId

* log/return currency error

* make case insensative

* use ToUpper instead

* feat: adding new currencies (#715)

* fix: task swag (#710)

Co-authored-by: Quoing <pavel.cadersky@mavenir.com>

* [feat] Adding new currencies

---------

Co-authored-by: quoing <quoing@users.noreply.github.com>
Co-authored-by: Quoing <pavel.cadersky@mavenir.com>
Co-authored-by: Bradley <41597815+userbradley@users.noreply.github.com>

* remove ts file and consoldate new values into json

* move flag to options namespace

* add env config for currencies

* basic documentaion

* remove in sync test

---------

Co-authored-by: quoing <quoing@users.noreply.github.com>
Co-authored-by: Quoing <pavel.cadersky@mavenir.com>
Co-authored-by: Bradley <41597815+userbradley@users.noreply.github.com>
Former-commit-id: c4b923847a
2024-01-18 10:45:42 -09:00
.devcontainer feat: user defined currencies (#700) 2024-01-18 10:45:42 -09:00
.github feat: user defined currencies (#700) 2024-01-18 10:45:42 -09:00
.scaffold/model feat: Notifiers CRUD (#337) 2023-03-06 21:18:58 -09:00
.vscode fix: inaccruate 401 & sql busy error (#679) 2024-01-04 08:55:26 -09:00
backend feat: user defined currencies (#700) 2024-01-18 10:45:42 -09:00
docs feat: user defined currencies (#700) 2024-01-18 10:45:42 -09:00
frontend feat: user defined currencies (#700) 2024-01-18 10:45:42 -09:00
.dockerignore include rootless dockerfile 2023-08-02 08:45:22 -05:00
.gitignore update git ignore 2023-03-25 11:20:38 -08:00
CONTRIBUTING.md docs: Fix a bunch of grammar and spelling, rephrased some sentences to be more readable (#635) 2023-11-30 14:25:22 -09:00
Dockerfile fix: inaccruate 401 & sql busy error (#679) 2024-01-04 08:55:26 -09:00
Dockerfile.rootless feat: Low-Privileged and Distroless Docker Image (#372) 2023-05-13 10:38:57 -08:00
LICENSE feat: items-editor (#5) 2022-09-12 14:47:27 -08:00
README.md feat: Low-Privileged and Distroless Docker Image (#372) 2023-05-13 10:38:57 -08:00
SECURITY.md feat: items-editor (#5) 2022-09-12 14:47:27 -08:00
Taskfile.yml chore: rewrite generator to resolve strange name generation (#612) 2023-11-15 17:19:51 -09:00
docker-compose.yml setup docker volumes & versions 2022-09-13 21:15:01 -08:00
fly.toml set fly.io build args 2022-10-13 17:12:35 -08:00
renovate.json Add renovate.json (#209) 2023-01-14 09:28:52 -09:00

README.md

HomeBox

Docs | Demo | Discord

Quick Start

Configuration & Docker Compose

# If using the rootless image, ensure data 
# folder has correct permissions
mkdir -p /path/to/data/folder
chown 65532:65532 -R /path/to/data/folder
docker run -d \
  --name homebox \
  --restart unless-stopped \
  --publish 3100:7745 \
  --env TZ=Europe/Bucharest \
  --volume /path/to/data/folder/:/data \
  ghcr.io/hay-kot/homebox:latest
# ghcr.io/hay-kot/homebox:latest-rootless

Credits