diff --git a/README.md b/README.md index 4a933378..98aff431 100644 --- a/README.md +++ b/README.md @@ -37,6 +37,7 @@ This is the official repository for the Tipi App Store. It contains all the apps - [Home Assistant](https://github.com/home-assistant/core) - Open source home automation that puts local control and privacy first - [HomeBox](https://github.com/hay-kot/homebox) - Homebox is the inventory and organization system built for the Home User - [Immich](https://github.com/immich-app/immich) - Photo and video backup solution directly from your mobile phone +- [IT-Tools](https://github.com/CorentinTh/it-tools) - Collection of handy online tools for developers, with great UX. - [Invidious](https://github.com/iv-org/invidious) - An alternative front-end to YouTube - [Jackett](https://github.com/Jackett/Jackett) - API Support for your favorite torrent trackers - [Jellyfin](https://github.com/jellyfin/jellyfin) - A media server for your home collection diff --git a/apps/it-tools/config.json b/apps/it-tools/config.json new file mode 100644 index 00000000..62d395ee --- /dev/null +++ b/apps/it-tools/config.json @@ -0,0 +1,16 @@ +{ + "$schema": "../schema.json", + "name": "IT-Tools", + "port": 8171, + "available": true, + "exposable": true, + "id": "it-tools", + "tipi_version": 1, + "version": "latest", + "categories": ["development"], + "description": "Useful tools for developer and people working in IT. ", + "short_desc": "Collection of handy online tools for developers, with great UX.", + "author": "CorentinTh", + "source": "https://github.com/CorentinTh/it-tools", + "form_fields": [] +} diff --git a/apps/it-tools/docker-compose.yml b/apps/it-tools/docker-compose.yml new file mode 100644 index 00000000..afd2c287 --- /dev/null +++ b/apps/it-tools/docker-compose.yml @@ -0,0 +1,19 @@ +version: "3" + +services: + it-tools: + container_name: it-tools + image: corentinth/it-tools:latest + ports: + - ${APP_PORT}:80 + restart: unless-stopped + networks: + - tipi_main_network + labels: + traefik.enable: ${APP_EXPOSED} + traefik.http.routers.it-tools.rule: Host(`${APP_DOMAIN}`) + traefik.http.routers.it-tools.entrypoints: websecure + traefik.http.routers.it-tools.service: it-tools + traefik.http.routers.it-tools.tls.certresolver: myresolver + traefik.http.services.it-tools.loadbalancer.server.port: 80 + diff --git a/apps/it-tools/metadata/description.md b/apps/it-tools/metadata/description.md new file mode 100644 index 00000000..90328579 --- /dev/null +++ b/apps/it-tools/metadata/description.md @@ -0,0 +1,17 @@ +Useful tools for developer and people working in IT. [Have a look !](https://it-tools.tech). + +## [](https://github.com/CorentinTh/it-tools?ref=noted#functionalities-and-roadmap)Functionalities and roadmap + +Please check the [issues](https://github.com/CorentinTh/it-tools/issues) to see if some feature listed to be implemented. + +You have an idea of a tool? Submit a [feature request](https://github.com/CorentinTh/it-tools/issues/new?assignees=corentinth&labels=&template=feature_request.md&title=)! + +## Credits + +Coded with ❤️ by [Corentin Thomasset](https://github.com//corentin-thomasset.fr). + +This project is continuously deployed using [vercel.com](https://vercel.com). + +## [](https://github.com/CorentinTh/it-tools?ref=noted#license)License + +This project is under the [GNU GPLv3](https://github.com/CorentinTh/it-tools/blob/main/LICENSE). diff --git a/apps/it-tools/metadata/logo.jpg b/apps/it-tools/metadata/logo.jpg new file mode 100644 index 00000000..9fb59df1 Binary files /dev/null and b/apps/it-tools/metadata/logo.jpg differ