[WIKI-383] feat: dev wiki app (#3411)

* dev: 1

* fix: tubro name

* fix : floating sidebar

* --wip-- [skip ci]

* wip-2

* --wip-- [skip ci]

* wip

* fix: working wiki

---------

Co-authored-by: VipinDevelops <[email protected]>
This commit is contained in:
M. Palanikannan
2025-06-18 21:19:30 +05:30
committed by GitHub
co-authored by VipinDevelops
parent ee96abd5f2
commit 22ae10cf88
915 changed files with 36100 additions and 1 deletions
+12
View File
@@ -0,0 +1,12 @@
FROM node:20-alpine
RUN apk add --no-cache libc6-compat
# Set working directory
WORKDIR /app
COPY . .
RUN yarn global add turbo
RUN yarn install
EXPOSE 3000
VOLUME [ "/app/node_modules", "/app/web/node_modules" ]
CMD ["yarn", "dev", "--filter=web"]