Find a file
dependabot[bot] bcf4248742 Bump gorm.io/driver/sqlite from 1.4.4 to 1.5.0
Bumps [gorm.io/driver/sqlite](https://github.com/go-gorm/sqlite) from 1.4.4 to 1.5.0.
- [Release notes](https://github.com/go-gorm/sqlite/releases)
- [Commits](https://github.com/go-gorm/sqlite/compare/v1.4.4...v1.5.0)

---
updated-dependencies:
- dependency-name: gorm.io/driver/sqlite
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
2023-04-21 22:36:26 +05:00
.github Bump docker/setup-buildx-action from 2.4.1 to 2.5.0 2023-04-09 12:47:57 +05:00
assets Fix the appearance of links on the main page 2023-04-09 11:55:38 +05:00
backend Format code with go fmt 2023-04-09 12:23:58 +05:00
templates Add the ability to edit groups 2023-04-09 11:55:08 +05:00
views Add the ability to edit groups 2023-04-09 11:55:08 +05:00
.gitignore Initial commit 2023-04-06 10:36:11 +05:00
Dockerfile Add dockerfile 2023-04-09 12:13:57 +05:00
go.mod Bump gorm.io/driver/sqlite from 1.4.4 to 1.5.0 2023-04-21 22:36:26 +05:00
go.sum Bump gorm.io/driver/sqlite from 1.4.4 to 1.5.0 2023-04-21 22:36:26 +05:00
license.txt Create license.txt 2023-04-09 20:03:27 +05:00
main.go Format code with go fmt 2023-04-09 12:23:58 +05:00
Makefile Add makefile 2023-04-09 10:42:34 +05:00
readme.md Describe the features in more detail 2023-04-09 19:51:20 +05:00
screenshot.webp Add a screenshot 2023-04-09 12:22:50 +05:00

Phoenix

Screenshot

Self-hosted start page without the extra stuff.

Features

  • No javascript
  • Relatively low resource consumption (around 7 MiB of RAM)
  • Authorization support

Configuration

Service settings can be set through environment variables.

  • PHOENIX_DB_PATH - path to the sqlite database.

Docker-compose example

services:
  phoenix:
    image: ghcr.io/ordinary-dev/phoenix
    volumes:
      - phoenix:/var/lib/phoenix
    ports:
      - 80:8080
    restart: unless-stopped

volumes:
  phoenix: