MatterLinux security tracker
Go to file
2024-08-13 22:40:44 +03:00
lib update: new logging functions 2024-08-13 22:40:44 +03:00
log update: new logging functions 2024-08-13 22:40:44 +03:00
public update: better CSS border colors 2024-08-13 22:25:36 +03:00
routes update: new logging functions 2024-08-13 22:40:44 +03:00
templates update: new logging functions 2024-08-13 22:40:44 +03:00
.gitignore update: better CSS border colors 2024-08-13 22:25:36 +03:00
adduser.sh first commit 2024-03-21 23:20:24 +03:00
Dockerfile update: depends and go version 2024-08-10 00:52:37 +03:00
go.mod update: depends and go version 2024-08-10 00:52:37 +03:00
go.sum update: depends and go version 2024-08-10 00:52:37 +03:00
LICENSE.txt first commit 2024-03-21 23:20:24 +03:00
main.go update: new logging functions 2024-08-13 22:40:44 +03:00
Makefile update: better CSS border colors 2024-08-13 22:25:36 +03:00
README.md update: better CSS border colors 2024-08-13 22:25:36 +03:00

security | MatterLinux security tracker

Soruce code of MatterLinux's security tracker, located at security.matterlinux.xyz

Deployment

Web server can be built and deployed with docker compose, here is an example configuration:

version: "3"

services:
  security:
    image: mattersecurity
    restart: unless-stopped
    build:
      context: ./
    ports:
      - "127.0.0.1:9876:9876"
    volumes:
      - "./db:/app/db"

After saving the configuration file, you can build and run the docker container:

docker-compose up -d

Adding users

After running the application at least once, you can users using the adduser.sh script. This script will add the specified user with a randomly generated passwords to the sqlite database. For example:

./adduser.sh ngn