-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
21 changed files
with
1,523 additions
and
47 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 |
---|---|---|
|
@@ -3,5 +3,5 @@ | |
First, run the development server: | ||
|
||
```bash | ||
npm run dev | ||
docker compose -f docker-compose.local.yml up | ||
``` |
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,12 @@ | ||
version: "3.9" | ||
|
||
services: | ||
node: | ||
build: | ||
dockerfile: node.Dockerfile | ||
context: . | ||
restart: on-failure | ||
volumes: | ||
- ".:/app" | ||
ports: | ||
- 3000:3000 |
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,9 @@ | ||
FROM node:18 | ||
|
||
WORKDIR /app | ||
|
||
COPY . . | ||
|
||
RUN npm ci | ||
|
||
ENTRYPOINT ["npm", "run", "dev"] |
Oops, something went wrong.
762b12d
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:
tcc-nextjs – ./
tcc-nextjs-alpha.vercel.app
tcc-nextjs-git-main-eliasrosa.vercel.app
tcc-nextjs-eliasrosa.vercel.app