Skip to content

Commit

Permalink
update project
Browse files Browse the repository at this point in the history
  • Loading branch information
eliasrosa committed Apr 6, 2023
1 parent 449a8b2 commit 762b12d
Show file tree
Hide file tree
Showing 21 changed files with 1,523 additions and 47 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,5 @@
First, run the development server:

```bash
npm run dev
docker compose -f docker-compose.local.yml up
```
12 changes: 12 additions & 0 deletions docker-compose.local.yml
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
9 changes: 9 additions & 0 deletions node.Dockerfile
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"]
Loading

1 comment on commit 762b12d

@vercel
Copy link

@vercel vercel bot commented on 762b12d Apr 6, 2023

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

Please sign in to comment.