A self hosted personal home page that allows for multiple users, guest access and multiple dashboards for each user. It also has "Smart Apps" which display live data for those apps.
Deploy this app to Linode with a free $100 credit!
Fenrus personal home page/dashboard.
It allows you to have a custom home page/new tab page with quick access to your personal apps.
For support use our Discord Server
Fenrus is a Dotnet application and requires ASP.NET Core Runtime to run.
Then you can run Fenrus
dotnet Fenrus.dll
Or to specify a port
dotnet Fenrus.dll --urls=http://*:1234
Docker is the preferred method of installing Fenrus
docker run -d \
--name=Fenrus \
-e TZ=Pacific/Auckland \
-p 3000:3000 \
-v /path/to/data:/app/data \
--restart unless-stopped \
revenz/fenrus:latest
Note: You can customise the port used by using the environmental variable "Port"
-e Port=1234
services:
fenrus:
image: revenz/fenrus
container_name: fenrus
environment:
- TZ=Pacific/Auckland
volumes:
- /path/to/data:/app/data
ports:
- 3000:3000
restart: unless-stopped
Fenrus will save all the user configuration data in the folder /app/data so map this folder outside the docker container.
All the configuration is saved into LiteDB file, Fenrus.db. There is an encryption key alongside this database file used to encrypt sensitive data inside the database. This way if you need to provide the database for support reasons, your sensitive data cannot be read.
First, you need to register a user, you can do this on the login page by entering a username and password and clicking "Register" if no user with that username exists, a new one will be created.
The first user created in the system will automatically be assigned the admin role. This role allows the user to manage other users.
Groups contain applications, links and other dashboards.
Shortcuts are broken down into 4 types
These are basic links to websites, either internal or external, and show no extra information. You can configure an icon for these links, or if left blank Fenrus will try to magically download the favicon for the site.
These are a step above links, they are known to Fenrus, and will have a high-resolution icon, perhaps a default URL, but little else.
This is where the magic really happens. These smart apps, or spell casts if you will, have extra information that Fenrus can download and query to display more information about the app. This could be as simple as some basic information, or it could be a feature-rich magical experience.
These link to other dashboards. You can add a dashboard link to a group or they are also available through the drop down menu at the top of the page.
Name: The name of the search engine
URL: The URL for the search query with %s being repalced by the search term
Shortcut: The shortcut to type to use this search engine (if not the default)
Icon: The icon to show when using this search engine
Q: What is the default username/password?
A: There is no default user. Enter a username and password, then click the "Register" button. This will create a new administrator user. You can then go ot "System" and turn off registrations if you do not wish to allow open registrations.
Q: Why was Fenrus rewritten in .NET?
A: Fenrus was original a much smaller application and was written in NodeJS. This was simple when Fenrus was a simple dashboard application. But as features were added (Docker Terminals/Logs, SSH, Up-Time Recording), the app become more complicated. To ease development, it was rewritten in .NET using Blazor Server Side. This drastically simplifies the code for system configuration/settings, and makes it easier to add more features. .NET has the added benefit of being a faster rendering engine than Node, resulting in faster page loading.
Please login to review this project.
No reviews for this project yet.
Smashing, the spiritual successor to Dashing, is a Sinatra …
Feature-rich homepage for your homelab, with easy YAML conf…
Allows you to record your Spotify listening activity and ha…
Comments (0)
Please login to join the discussion on this project.