Skip to content

Commit 1b7791f

Browse files
committed
Init
0 parents  commit 1b7791f

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

47 files changed

+2514
-0
lines changed

.devcontainer/devcontainer.json

+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
{
2+
"name": "Riven frontend",
3+
"image": "mcr.microsoft.com/devcontainers/typescript-node:1-22-bookworm",
4+
"postCreateCommand": "bun i && bun dev",
5+
"remoteUser": "root"
6+
}

.editorconfig

+30
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
# EditorConfig is awesome: https://editorconfig.org
2+
3+
# Top-most EditorConfig file
4+
root = true
5+
6+
# Unix-style newlines with a newline ending every file
7+
[*]
8+
end_of_line = lf
9+
insert_final_newline = true
10+
11+
# Matches multiple files with brace expansion notation
12+
[*.{js,jsx,ts,tsx,json}]
13+
charset = utf-8
14+
indent_style = space
15+
indent_size = 4
16+
trim_trailing_whitespace = true
17+
insert_final_newline = true
18+
19+
# Matches the exact files either package.json or .travis.yml
20+
[{package.json,.travis.yml}]
21+
indent_style = space
22+
indent_size = 4
23+
24+
# Ignore minified JavaScript files
25+
[**.min.js]
26+
indent_style = ignore
27+
28+
# Denote filenames that should be used as they are without any conversion
29+
[*.{md,html,css,scss}]
30+
indent_style = unset

.github/dependabot.yml

+20
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
# To get started with Dependabot version updates, you'll need to specify which
2+
# package ecosystems to update and where the package manifests are located.
3+
# Please see the documentation for more information:
4+
# https://docs.github.com/github/administering-a-repository/configuration-options-for-dependency-updates
5+
# https://containers.dev/guide/dependabot
6+
7+
version: 2
8+
updates:
9+
- package-ecosystem: 'devcontainers'
10+
directory: '/'
11+
schedule:
12+
interval: weekly
13+
- package-ecosystem: 'docker'
14+
directory: '/'
15+
schedule:
16+
interval: weekly
17+
- package-ecosystem: 'npm'
18+
directory: '/'
19+
schedule:
20+
interval: weekly

.gitignore

+36
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
1+
# See https://help.github.com/articles/ignoring-files/ for more about ignoring files.
2+
3+
# dependencies
4+
/node_modules
5+
/.pnp
6+
.pnp.js
7+
.yarn/install-state.gz
8+
9+
# testing
10+
/coverage
11+
12+
# next.js
13+
/.next/
14+
/out/
15+
16+
# production
17+
/build
18+
19+
# misc
20+
.DS_Store
21+
*.pem
22+
23+
# debug
24+
npm-debug.log*
25+
yarn-debug.log*
26+
yarn-error.log*
27+
28+
# local env files
29+
.env*.local
30+
31+
# vercel
32+
.vercel
33+
34+
# typescript
35+
*.tsbuildinfo
36+
next-env.d.ts

.prettierignore

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
README.MD
2+
CHANGELOG.md

.prettierrc.json

+22
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
{
2+
"arrowParens": "always",
3+
"bracketSpacing": true,
4+
"htmlWhitespaceSensitivity": "css",
5+
"insertPragma": false,
6+
"bracketSameLine": true,
7+
"jsxSingleQuote": true,
8+
"printWidth": 120,
9+
"proseWrap": "preserve",
10+
"quoteProps": "as-needed",
11+
"requirePragma": false,
12+
"semi": false,
13+
"singleQuote": true,
14+
"tabWidth": 4,
15+
"trailingComma": "none",
16+
"useTabs": false,
17+
"endOfLine": "auto",
18+
"plugins": ["@trivago/prettier-plugin-sort-imports", "prettier-plugin-tailwindcss"],
19+
"importOrder": ["^react$", "^next(/.*)?$", "next-themes", "@/*", "<THIRD_PARTY_MODULES>"],
20+
"importOrderSeparation": true,
21+
"importOrderSortSpecifiers": true
22+
}

.vscode/extensions.json

+28
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
{
2+
/**
3+
* Popular extensions recommended by others.
4+
* https://go.microsoft.com/fwlink/?LinkId=827846
5+
**/
6+
"recommendations": [
7+
"PulkitGangwar.nextjs-snippets", // https://marketplace.visualstudio.com/items?itemName=PulkitGangwar.nextjs-snippets
8+
"PulkitGangwar.nextjs-snippets", // https://marketplace.visualstudio.com/items?itemName=PulkitGangwar.nextjs-snippets
9+
"formulahendry.auto-close-tag", // https://marketplace.visualstudio.com/items?itemName=formulahendry.auto-close-tag
10+
"aaron-bond.better-comments", // https://marketplace.visualstudio.com/items?itemName=aaron-bond.better-comments
11+
"mikestead.dotenv", // https://marketplace.visualstudio.com/items?itemName=EditorConfig.EditorConfig
12+
"EditorConfig.EditorConfig", // https://marketplace.visualstudio.com/items?itemName=EditorConfig.EditorConfig
13+
"dbaeumer.vscode-eslint", // https://marketplace.visualstudio.com/items?itemName=dbaeumer.vscode-eslint
14+
"MikeBovenlander.formate", // https://marketplace.visualstudio.com/items?itemName=MikeBovenlander.formate
15+
"donjayamanne.githistory", // https://marketplace.visualstudio.com/items?itemName=donjayamanne.githistory
16+
"wix.vscode-import-cost", // https://marketplace.visualstudio.com/items?itemName=wix.vscode-import-cost
17+
"sburg.vscode-javascript-booster", // https://marketplace.visualstudio.com/items?itemName=sburg.vscode-javascript-booster
18+
"christian-kohler.npm-intellisense", // https://marketplace.visualstudio.com/items?itemName=christian-kohler.npm-intellisense
19+
"esbenp.prettier-vscode", // https://marketplace.visualstudio.com/items?itemName=esbenp.prettier-vscode
20+
"ChakrounAnas.turbo-console-log", // https://marketplace.visualstudio.com/items?itemName=ChakrounAnas.turbo-console-log
21+
"codeandstuff.package-json-upgrade", // https://marketplace.visualstudio.com/items?itemName=codeandstuff.package-json-upgrade
22+
"moalamri.inline-fold", // https://marketplace.visualstudio.com/items?itemName=moalamri.inline-fold
23+
"KnisterPeter.vscode-commitizen", // https://marketplace.visualstudio.com/items?itemName=KnisterPeter.vscode-commitizen
24+
"yzhang.markdown-all-in-one", // https://marketplace.visualstudio.com/items?itemName=yzhang.markdown-all-in-one
25+
"bradlc.vscode-tailwindcss", // https://marketplace.visualstudio.com/items?itemName=bradlc.vscode-tailwindcss
26+
"austenc.tailwind-docs" // https://marketplace.visualstudio.com/items?itemName=austenc.tailwind-docs
27+
]
28+
}

.vscode/launch.json

+45
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,45 @@
1+
{
2+
"version": "0.2.0",
3+
"configurations": [
4+
{
5+
"name": "Next.js: debug server-side",
6+
"type": "node-terminal",
7+
"request": "launch",
8+
"command": "bun dev"
9+
},
10+
{
11+
"name": "Next.js: debug client-side (Chrome)",
12+
"type": "chrome",
13+
"request": "launch",
14+
"url": "http://localhost:3000"
15+
},
16+
{
17+
"name": "Next.js: debug client-side (Firefox)",
18+
"type": "firefox",
19+
"request": "launch",
20+
"url": "http://localhost:3000",
21+
"reAttach": true,
22+
"pathMappings": [
23+
{
24+
"url": "webpack://_N_E",
25+
"path": "${workspaceFolder}"
26+
}
27+
]
28+
},
29+
{
30+
"name": "Next.js: debug full stack",
31+
"type": "node",
32+
"request": "launch",
33+
"program": "${workspaceFolder}/node_modules/.bin/next",
34+
"runtimeArgs": ["--inspect"],
35+
"skipFiles": ["<node_internals>/**"],
36+
"serverReadyAction": {
37+
"action": "debugWithChrome",
38+
"killOnServerStop": true,
39+
"pattern": "- Local:.+(https?://.+)",
40+
"uriFormat": "%s",
41+
"webRoot": "${workspaceFolder}"
42+
}
43+
}
44+
]
45+
}

.vscode/settings.json

+29
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
{
2+
// JS
3+
"javascript.updateImportsOnFileMove.enabled": "always",
4+
// TS
5+
"typescript.updateImportsOnFileMove.enabled": "always",
6+
// JSON
7+
"[json]": {
8+
"editor.defaultFormatter": "vscode.json-language-features"
9+
},
10+
"[jsonc]": {
11+
"editor.defaultFormatter": "vscode.json-language-features"
12+
},
13+
// Extension: Git
14+
"git.rebaseWhenSync": false,
15+
"git.autofetch": true,
16+
"git.enableSmartCommit": true,
17+
// Extension: Prettier
18+
"prettier.requireConfig": true,
19+
"editor.defaultFormatter": "esbenp.prettier-vscode",
20+
"editor.formatOnSave": true,
21+
// Extension: ESLint
22+
"editor.codeActionsOnSave": {
23+
"source.fixAll": "explicit",
24+
"source.organizeImports": "never"
25+
},
26+
"eslint.validate": ["javascript", "javascriptreact", "typescript", "typescriptreact"],
27+
"eslint.format.enable": true,
28+
"npm.packageManager": "bun"
29+
}

Dockerfile

+70
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,70 @@
1+
FROM node:22.13.1-alpine AS base
2+
3+
# Install dependencies only when needed
4+
FROM base AS deps
5+
# Check https://github.com/nodejs/docker-node/tree/b4117f9333da4138b03a546ec926ef50a31506c3#nodealpine to understand why libc6-compat might be needed.
6+
RUN apk update && apk upgrade && apk add --no-cache libc6-compat && npm i -g npm@latest
7+
WORKDIR /app
8+
9+
# Install dependencies based on the preferred package manager
10+
COPY --link package.json yarn.lock* package-lock.json* pnpm-lock.yaml* bun.lockb* ./
11+
RUN \
12+
if [ -f yarn.lock ]; then yarn --frozen-lockfile; \
13+
elif [ -f package-lock.json ]; then npm ci --legacy-peer-deps; \
14+
elif [ -f pnpm-lock.yaml ]; then corepack enable pnpm && pnpm i --frozen-lockfile; \
15+
elif [ -f bun.lockb ]; then bun install --frozen-lockfile; \
16+
else echo "Lockfile not found." && exit 1; \
17+
fi
18+
19+
# Rebuild the source code only when needed
20+
FROM base AS builder
21+
WORKDIR /app
22+
ENV NODE_ENV=production
23+
COPY --from=deps --link /app/node_modules ./node_modules
24+
COPY . .
25+
26+
# Next.js collects completely anonymous telemetry data about general usage.
27+
# Learn more here: https://nextjs.org/telemetry
28+
# Uncomment the following line in case you want to disable telemetry during the build.
29+
# ENV NEXT_TELEMETRY_DISABLED=1
30+
31+
RUN \
32+
if [ -f yarn.lock ]; then yarn run build; \
33+
elif [ -f package-lock.json ]; then npm run build; \
34+
elif [ -f pnpm-lock.yaml ]; then corepack enable pnpm && pnpm run build; \
35+
elif [ -f bun.lockb ]; then bun run build; \
36+
else echo "Lockfile not found." && exit 1; \
37+
fi
38+
39+
# Production image, copy all the files and run next
40+
FROM base AS runner
41+
WORKDIR /app
42+
43+
ENV NODE_ENV=production
44+
# Uncomment the following line in case you want to disable telemetry during runtime.
45+
# ENV NEXT_TELEMETRY_DISABLED=1
46+
47+
RUN addgroup --system --gid 1001 nodejs
48+
RUN adduser --system --uid 1001 nextjs
49+
50+
COPY --from=builder /app/public ./public
51+
52+
# Set the correct permission for prerender cache
53+
RUN mkdir .next
54+
RUN chown nextjs:nodejs .next
55+
56+
# Automatically leverage output traces to reduce image size
57+
# https://nextjs.org/docs/advanced-features/output-file-tracing
58+
COPY --from=builder --chown=nextjs:nodejs /app/.next/standalone ./
59+
COPY --from=builder --chown=nextjs:nodejs /app/.next/static ./.next/static
60+
61+
USER nextjs
62+
63+
EXPOSE 3000
64+
65+
ENV PORT=3000
66+
67+
# server.js is created by next build from the standalone output
68+
# https://nextjs.org/docs/pages/api-reference/next-config-js/output
69+
ENV HOSTNAME="0.0.0.0"
70+
CMD ["node", "server.js"]

0 commit comments

Comments
 (0)