MatterLinux website
Go to file
2024-08-23 14:11:48 +03:00
lib update: general formatting and cleanup 2024-08-14 00:32:48 +03:00
log update: general formatting and cleanup 2024-08-14 00:32:48 +03:00
public new: add feeds to news page 2024-08-23 14:11:48 +03:00
routes new: add feeds to news page 2024-08-23 14:11:48 +03:00
templates new: add feeds to news page 2024-08-23 14:11:48 +03:00
.gitignore update: general formatting and cleanup 2024-08-14 00:32:48 +03:00
Dockerfile update: depends and go version 2024-08-10 00:49:13 +03:00
go.mod new: add feeds to news page 2024-08-23 14:11:48 +03:00
go.sum new: add feeds to news page 2024-08-23 14:11:48 +03:00
LICENSE.txt first commit 2023-12-09 19:25:38 +03:00
main.go new: add feeds to news page 2024-08-23 14:11:48 +03:00
Makefile new: add feeds to news page 2024-08-23 14:11:48 +03:00
README.md update: general formatting and cleanup 2024-08-14 00:32:48 +03:00

website | MatterLinux website

Soruce code of Matterlinux's offical website, which is located at matterlinux.xyz

Deployment

Web server can be built and deployed with docker compose using the following configuration file:

version: "3"

services:
  website:
    image: matterwebsite
    restart: unless-stopped
    build:
      context: ./
    ports:
      - "127.0.0.1:9878:9878"
    volumes:
      - "./content:/app/content"

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

docker-compose up -d

Managing content

Website content can be managed by editing JSON and markdown files under the content direcotry.

MatterLinux's website content directory can be found in the content repository.