Add homepage and memos

This commit is contained in:
2026-02-03 13:59:22 +04:00
parent e548189596
commit dd5a5f6fca
12 changed files with 80 additions and 3 deletions

2
homepage/.env.example Normal file
View File

@@ -0,0 +1,2 @@
OAUTH_GITHUB_CLIENT_ID=
OAUTH_GITHUB_CLIENT_SECRET=

View File

@@ -0,0 +1,18 @@
services:
homepage:
container_name: homepage
restart: always
build:
context: src
args:
- OAUTH_GITHUB_CLIENT_ID=${OAUTH_GITHUB_CLIENT_ID:?}
- OAUTH_GITHUB_CLIENT_SECRET=${OAUTH_GITHUB_CLIENT_SECRET:?}
environment:
- NODE_ENV=production
networks:
- homepage_network
networks:
homepage_network:
driver: bridge
name: homepage_network

1
homepage/src Submodule

Submodule homepage/src added at bc4cd21771