-
-
Notifications
You must be signed in to change notification settings - Fork 28
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #111 from akshat-OwO/main
deploy to prod
- Loading branch information
Showing
15 changed files
with
15,886 additions
and
48 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,40 @@ | ||
# See https://help.github.com/articles/ignoring-files/ for more about ignoring files. | ||
|
||
# dependencies | ||
/node_modules | ||
/.pnp | ||
.pnp.js | ||
|
||
# testing | ||
/coverage | ||
|
||
# next.js | ||
/.next/ | ||
/out/ | ||
|
||
# production | ||
/build | ||
|
||
# misc | ||
.DS_Store | ||
*.pem | ||
|
||
#pwa | ||
sw.js | ||
workbox-* | ||
swe-worker-* | ||
|
||
# debug | ||
npm-debug.log* | ||
yarn-debug.log* | ||
yarn-error.log* | ||
|
||
# local env files | ||
.env*.local | ||
|
||
# vercel | ||
.vercel | ||
|
||
# typescript | ||
*.tsbuildinfo | ||
next-env.d.ts |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
FROM node:20 | ||
|
||
# Install pnpm globally | ||
RUN npm install -g pnpm | ||
|
||
# Set the working directory | ||
WORKDIR /app | ||
|
||
# Copy the package.json and pnpm-lock.yaml files | ||
COPY package.json pnpm-lock.yaml ./ | ||
|
||
# Install dependencies with pnpm | ||
RUN pnpm install --frozen-lockfile | ||
|
||
COPY . . | ||
|
||
# Run the app | ||
CMD ["pnpm", "run", "dev"] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
name: SyllabusX | ||
services: | ||
client: | ||
build: | ||
context: ./ | ||
dockerfile: Dockerfile | ||
ports: | ||
- 3000:3000 | ||
develop: | ||
watch: | ||
- path: ./package.json | ||
action: rebuild | ||
- path: ./package-lock.json | ||
action: rebuild | ||
- path: ./ | ||
target: /app | ||
action: sync |
Oops, something went wrong.
c2ba8b6
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Successfully deployed to the following URLs:
syllabusx – ./
syllabusx-akshat-owo.vercel.app
syllabusx.live
syllabusx-git-prod-akshat-owo.vercel.app