Thomas Camlong 7dc205fa66 🚀 v0.7.1 ! Bug fixes and QOL improvements
### Features
*  Changing deluge/qbittorent to use href instead of origin by @VinnyVynce in https://github.com/ajnart/homarr/pull/178
*  Transmission Integration by @ajnart in https://github.com/ajnart/homarr/pull/181
*  Add different URL for API calls by @ajnart in https://github.com/ajnart/homarr/pull/180
* Password / Login Page by @ajnart in https://github.com/ajnart/homarr/pull/179
*  Ability to toggle categories by @ajnart in https://github.com/ajnart/homarr/pull/177
*  Add settings to change title and icons by @Aimsucks in https://github.com/ajnart/homarr/pull/184
*  Color, shade, app opacity, and background customizations by @Aimsucks in https://github.com/ajnart/homarr/pull/188
*  Calendar indication about date and w-e with secondary color by @Darkham42 in https://github.com/ajnart/homarr/pull/193
*  More Information in Torrents Module by @LarveyOfficial in https://github.com/ajnart/homarr/pull/195
*  Could position widgets at left by @Darkham42 in https://github.com/ajnart/homarr/pull/197
*  Configure calendar widget to show Sunday first by @ajnart in https://github.com/ajnart/homarr/pull/224
* Service Addition Overhaul by @LarveyOfficial in https://github.com/ajnart/homarr/pull/229
*  Slidable service span in customizations  by @Aimsucks in https://github.com/ajnart/homarr/pull/222
### Tweaks
🔧 Make credentials non-required for torrents by @ajnart in https://github.com/ajnart/homarr/pull/223
### Bug fixes
* 🐛Fix completed torrents progress color by @LarveyOfficial in https://github.com/ajnart/homarr/pull/227
* 🐛Tiles could be moved accidentally on mobiles by @ajnart in https://github.com/ajnart/homarr/pull/226
* 🐛 Cannot open "New Tab URL" on mobile by @ajnart in https://github.com/ajnart/homarr/pull/225
* 🐛 Fix Calendar Item Duplication by @LarveyOfficial in https://github.com/ajnart/homarr/pull/249
* 🐛Fix URL for Radarr and other services by @LarveyOfficial in https://github.com/ajnart/homarr/pull/250
* 🐛 Fix Calendar not loading content when a service fails by @LarveyOfficial in https://github.com/ajnart/homarr/pull/230
* 🐛 Calendar current day for light theme by @Darkham42 in https://github.com/ajnart/homarr/pull/194
* 🐛 Fix for timezone issues by @LarveyOfficial in https://github.com/ajnart/homarr/pull/186
* 🐛 Fix Sonarr Incorrect Dates by @LarveyOfficial in https://github.com/ajnart/homarr/pull/189
* 🐛 Fix for origin URL not containing path in API request URL by @Aimsucks in https://github.com/ajnart/homarr/pull/221
2022-06-20 22:09:25 +02:00
2022-06-07 08:32:39 +02:00
2022-05-23 11:48:25 +02:00
2022-06-20 22:03:43 +02:00
2022-05-24 20:15:07 +02:00
2022-06-20 14:02:33 -04:00
2022-05-12 20:34:05 -04:00
2022-04-30 21:39:59 +02:00
2022-05-18 22:07:28 +02:00
2022-05-29 18:55:22 +02:00
2022-06-01 20:00:21 +02:00
2022-05-13 13:29:32 +02:00
2022-05-26 00:44:24 +02:00
2022-06-08 16:16:00 +00:00
2022-05-08 21:44:48 +02:00
2022-04-24 22:36:47 +02:00
2022-05-21 10:32:54 +02:00
2022-06-20 22:03:43 +02:00
2022-05-29 18:47:12 +02:00
2022-06-07 10:36:47 +02:00

Homarr

Latest Release (Semver) CI Status

Join the discord! — Don't forget to star the repo if you are enjoying the project!

Demo ↗️ Install ➡️ Read the Wiki 📄


Homarr is a simple and lightweight homepage for your server, that helps you easily access all of your services in one place.

It integrates with the services you use to display information on the homepage (E.g. Show upcoming Sonarr/Radarr releases).

For a full list of integrations look at: wiki/integrations.

If you have any questions about Homarr or want to share information with us, please go to one of the following places:

Before you file an issue, make sure you have the read known issues section.

For more information, read the wiki!

Table of Contents


Features

  • Integrates with services you use.
  • Search the web direcetly from your homepage.
  • Real-time status indicator for every service.
  • Automatically finds icons while you type the name of a serivce.
  • Widgets that can display all types of information.
  • Easy deployment with Docker.
  • Very light-weight and fast.
  • Free and Open-Source.
  • And more...

⤴️ Back to Top


👀 Preview

Homarr Preview

⤴️ Back to Top


💥 Known Issues

  • Posters on the Calendar get blocked by adblockers. (IMDb posters)

⤴️ Back to Top


🚀 Installation

🐳 Deploying from Docker Image

Supported architectures: x86-64, ARM, ARM64

Requirements:

Standard Docker Install

docker run  \
  --name homarr \
  --restart unless-stopped \
  -p 7575:7575 \
  -v ./homarr/configs:/app/data/configs \
  -v ./homarr/icons:/app/public/icons \
  -d ghcr.io/ajnart/homarr:latest

Docker Compose

---
version: '3'
#---------------------------------------------------------------------#
#                Homarr -  A homepage for your server.                #
#---------------------------------------------------------------------#
services:
  homarr:
    container_name: homarr
    image: ghcr.io/ajnart/homarr:latest
    restart: unless-stopped
    volumes:
      - ./homarr/configs:/app/data/configs
      - ./homarr/icons:/app/public/icons
    ports:
      - '7575:7575'
docker compose up -d

Getting EACCESS errors in the logs? Try running sudo chmod 777 /directory-you-mounted-to!

⤴️ Back to Top

🛠️ Building from Source

Requirements:

Installing

  • Clone the GitHub repo: git clone https://github.com/ajnart/homarr.git & cd homarr
  • Install all dependencies: yarn install
  • Build the source: yarn build
  • Start the NextJS web server: yarn start
  • Note: If you want to update the code in real time, launch with yarn dev

⤴️ Back to Top


💖 Contributing

Please read our Contribution Guidelines

All contributions are highly appreciated.

⤴️ Back to Top


📜 License

Homarr is Licensed under MIT

Copyright © 2022 Thomas "ajnart" Camlong

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.

⤴️ Back to Top


Thank you for visiting! For more information read the wiki!

Description
Customizable browser's home page to interact with your homeserver's Docker containers (e.g. Sonarr/Radarr):
https://homarr.dev/ Readme MIT 40 MiB
Languages
TypeScript 98%
JavaScript 1.3%
SCSS 0.5%
Dockerfile 0.2%