Skip to content

Commit

Permalink
chore: update readme
Browse files Browse the repository at this point in the history
  • Loading branch information
oae committed Oct 27, 2022
1 parent 1f60ca1 commit 350b5f3
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ cp .env.example .env
pnpm i
docker compose up -d redis db
pnpm prisma migrate deploy
pnpm dev:server
pnpm dev
```

Open [http://localhost:3000](http://localhost:3000) with your browser to see the page.
Expand Down
6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,13 +4,13 @@
"author": "Alperen Elhan <alperen@elhan.io>",
"private": true,
"scripts": {
"dev:server": "NODE_ENV=development ts-node --project tsconfig.server.json src/server/index.ts",
"dev": "NODE_ENV=development ts-node --project tsconfig.server.json src/server/index.ts",
"build": "pnpm build:next && pnpm build:server",
"build:server": "tsc --project tsconfig.server.json",
"start:server": "NODE_ENV=production node dist/server/index.js",
"prod": "prisma migrate deploy && pnpm start:server",
"dev": "next dev",
"dev:next": "next dev",
"build:next": "next build",
"build": "pnpm build:next && pnpm build:server",
"build:analyze": "ANALYZE=true pnpm build:next && ANALYZE=false pnpm build:server",
"lint": "next lint",
"start": "next start",
Expand Down

0 comments on commit 350b5f3

Please sign in to comment.