homepage/README.md

62 lines
1.3 KiB
Markdown
Raw Normal View History

2022-08-25 03:36:08 +03:00
![Homepage Preview](/images/preview.png)
2022-08-25 11:17:41 +03:00
## Features
* Web Bookmarks
* Service Bookmarks
- Docker Integration
- Status light + CPU, Memory & Network Reporting
- Service Integration
- Currently supports Sonarr, Radarr, Ombi, Emby, NZBGet & Portainer
* Homepage Widgets
- System Stats (Disk, CPU, Memory)
- Weather (via weatherapi.com)
* Customizable
- 21 theme colors with light and dark mode support
2022-08-14 12:02:58 +03:00
## Getting Started
2022-08-24 11:02:51 +03:00
Using docker compose:
```yaml
version: '3.3'
services:
homepage:
image: ghcr.io/benphelps/homepage:main
container_name: homepage
ports:
- 3000:3000
volumes:
- /path/to/config:/app/config
```
or docker run:
```bash
docker run -p 3000:3000 -v /path/to/config:/app/config ghcr.io/benphelps/homepage:main
```
## Configuration
Configuration files will be genereted and placed on the first request.
Configuration is done in the /config directory using .yaml files. Refer to each config for
the specific configuration options.
## Development
2022-08-24 10:44:35 +03:00
Install NPM packages, this project uses [pnpm](https://pnpm.io/) (and so should you!):
2022-08-14 12:02:58 +03:00
```bash
2022-08-24 10:44:35 +03:00
pnpm install
2022-08-14 12:02:58 +03:00
```
2022-08-24 10:44:35 +03:00
Start the development server:
2022-08-14 12:02:58 +03:00
2022-08-24 10:44:35 +03:00
```bash
pnpm dev
```
2022-08-14 12:02:58 +03:00
2022-08-24 10:44:35 +03:00
Open [http://localhost:3000](http://localhost:3000) to start.