2024-01-17 17:15:46 +00:00
|
|
|
# tracker | MatterLinux Package Tracker
|
|
|
|
Soruce code of MatterLinux's package tracker, located at
|
|
|
|
[tracker.matterlinux.xyz](https://tracker.matterlinux.xyz)
|
2024-01-17 17:06:26 +00:00
|
|
|
|
|
|
|
### Configuration
|
|
|
|
Tracker can be configured to track different repos. Configuration
|
|
|
|
is stored in the `cfg.json` file. Here is the configuration for tracking
|
2024-02-23 18:31:38 +00:00
|
|
|
official MatterLinux 24 repos:
|
2024-01-17 17:06:26 +00:00
|
|
|
```
|
|
|
|
{
|
|
|
|
"repos": [
|
|
|
|
{
|
|
|
|
"name": "base",
|
|
|
|
"branch": "main",
|
|
|
|
"source": "https://git.matterlinux.xyz/Matter/base",
|
2024-02-23 18:31:38 +00:00
|
|
|
"url": "https://24.matterlinux.xyz/base"
|
2024-01-17 17:06:26 +00:00
|
|
|
},
|
|
|
|
{
|
|
|
|
"name": "desktop",
|
|
|
|
"branch": "main",
|
|
|
|
"source": "https://git.matterlinux.xyz/Matter/desktop",
|
2024-02-23 18:31:38 +00:00
|
|
|
"url": "https://24.matterlinux.xyz/desktop"
|
2024-01-17 17:06:26 +00:00
|
|
|
}
|
|
|
|
]
|
|
|
|
}
|
|
|
|
```
|
|
|
|
|
|
|
|
### Deployment
|
|
|
|
Web server can be built and deployed with docker:
|
|
|
|
```
|
|
|
|
docker build --tag mattertracker .
|
|
|
|
docker-compose up -d
|
|
|
|
```
|