feat: add game server infrastructure and documentary improvements
Some checks failed
Deploy / deploy (push) Has been cancelled
Some checks failed
Deploy / deploy (push) Has been cancelled
- Add Docker Compose for OpenFusion (FusionFall), MapleStory 2, and Minecraft FTB Infinity Evolved game servers - Add MapleStory 2 multi-service compose (MySQL, World, Login, Web, Game) - Add OpenFusion Dockerfile and configuration files - Fix CMS Dockerfile, web Dockerfile, and documentary components - Add root layout, globals.css, not-found page, and text formatting utils - Update .gitignore to exclude large game server repos and data Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
@@ -2,9 +2,12 @@ FROM node:20-alpine AS base
|
||||
|
||||
WORKDIR /app
|
||||
COPY package.json package-lock.json* ./
|
||||
RUN npm ci
|
||||
RUN npm install
|
||||
COPY . .
|
||||
RUN npm run build
|
||||
RUN npm run build && \
|
||||
find src/api -name "schema.json" | while read f; do \
|
||||
mkdir -p "dist/$(dirname "$f")" && cp "$f" "dist/$f"; \
|
||||
done
|
||||
|
||||
FROM node:20-alpine AS production
|
||||
WORKDIR /app
|
||||
|
||||
@@ -15,10 +15,15 @@
|
||||
"@strapi/plugin-cloud": "^5.36.0",
|
||||
"@strapi/plugin-users-permissions": "^5.36.0",
|
||||
"pg": "^8.13.0",
|
||||
"better-sqlite3": "^11.0.0"
|
||||
"better-sqlite3": "^11.0.0",
|
||||
"react": "^18.0.0",
|
||||
"react-dom": "^18.0.0",
|
||||
"react-router-dom": "^6.0.0",
|
||||
"styled-components": "^6.0.0"
|
||||
},
|
||||
"devDependencies": {
|
||||
"typescript": "^5.3.0"
|
||||
"typescript": "^5.3.0",
|
||||
"esbuild": "^0.25.0"
|
||||
},
|
||||
"engines": {
|
||||
"node": ">=20.0.0 <=24.x.x",
|
||||
|
||||
@@ -40,9 +40,6 @@
|
||||
"relation": "oneToMany",
|
||||
"target": "api::chapter.chapter",
|
||||
"mappedBy": "documentary"
|
||||
},
|
||||
"publishedAt": {
|
||||
"type": "datetime"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user