Find a file
Ivan R. 292df39bb8
Change path to API.
This helps you understand which paths return pages and which paths process forms.
2023-07-22 20:59:40 +05:00
.github Bump docker/build-push-action from 4.0.0 to 4.1.1 2023-07-21 00:48:09 +05:00
assets Change padding and size of links 2023-07-21 20:26:55 +05:00
config Add simple config module 2023-07-22 11:33:14 +05:00
database Rename 'backend' module to 'database' 2023-07-22 15:24:01 +05:00
templates Change path to API. 2023-07-22 20:59:40 +05:00
views Change path to API. 2023-07-22 20:59:40 +05:00
.env Add simple config module 2023-07-22 11:33:14 +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 Start using JWT tokens 2023-07-22 13:42:43 +05:00
go.sum Start using JWT tokens 2023-07-22 13:42:43 +05:00
license.txt Create license.txt 2023-04-09 20:03:27 +05:00
main.go Rename 'backend' module to 'database' 2023-07-22 15:24:01 +05:00
Makefile Simplify makefile 2023-07-21 00:54:03 +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: