first commit

This commit is contained in:
ngn
2024-03-21 23:20:24 +03:00
commit c4fb3c9070
29 changed files with 2185 additions and 0 deletions

19
README.md Normal file
View File

@ -0,0 +1,19 @@
# security | MatterLinux Security Tracker
Soruce code of MatterLinux's security tracker, located at
[security.matterlinux.xyz](https://security.matterlinux.xyz)
### Deployment
Web server can be built and deployed with docker:
```bash
docker build --tag mattersecurity .
mkdir -pv db
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:
```bash
./adduser.sh ngn
```