Uploaded Project
This commit is contained in:
parent
aca608ae09
commit
7bcfca842d
3 changed files with 37 additions and 0 deletions
6
Dockerfile
Normal file
6
Dockerfile
Normal file
|
@ -0,0 +1,6 @@
|
||||||
|
FROM node:24-alpine as build
|
||||||
|
RUN npm i
|
||||||
|
RUN npm run docs:dev
|
||||||
|
|
||||||
|
FROM nginx:1-alpine as prod
|
||||||
|
COPY --from=build ./.vitepress/dist/ /usr/share/nginx/html
|
21
index.md
Normal file
21
index.md
Normal file
|
@ -0,0 +1,21 @@
|
||||||
|
---
|
||||||
|
# https://vitepress.dev/reference/default-theme-home-page
|
||||||
|
layout: home
|
||||||
|
|
||||||
|
hero:
|
||||||
|
name: "hackmi.ch"
|
||||||
|
text: "🛠️ Maintenance"
|
||||||
|
tagline: Checkout our new 🚀 features after Maintenance
|
||||||
|
actions:
|
||||||
|
- theme: brand
|
||||||
|
text: Check status for information
|
||||||
|
link: https://status.hackmi.ch
|
||||||
|
|
||||||
|
features:
|
||||||
|
- title: 🧑💻️ New Locations
|
||||||
|
details: Migrating to new locations like FRA, AMS, USA
|
||||||
|
- title: 🔗 Dashboard + SSO
|
||||||
|
details: All new services have our own SSO integration with custom dashboard
|
||||||
|
- title: 🔥 Hot migrations
|
||||||
|
details: Swapping Locations on the Fly or mirror it for load balancing
|
||||||
|
---
|
10
package.json
Normal file
10
package.json
Normal file
|
@ -0,0 +1,10 @@
|
||||||
|
{
|
||||||
|
"scripts": {
|
||||||
|
"docs:dev": "vitepress dev",
|
||||||
|
"docs:build": "vitepress build",
|
||||||
|
"docs:preview": "vitepress preview"
|
||||||
|
},
|
||||||
|
"dependencies": {
|
||||||
|
"vitepress": "^1.6.3"
|
||||||
|
}
|
||||||
|
}
|
Loading…
Add table
Add a link
Reference in a new issue