Skip to content

Commit

Permalink
chore: fix no tracker.js when build problem
Browse files Browse the repository at this point in the history
  • Loading branch information
moonrailgun committed Oct 22, 2023
1 parent 0b42ee6 commit e41ab16
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
FROM node:lts-alpine

WORKDIR /app/tailchat
WORKDIR /app/tianji

RUN npm install -g [email protected]

Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

Insight into everything

`Uptime Monitor` + `Website analytics` + `Server Status ` = `Tianji`
`Uptime Monitor` + `Website analytics` + `Server Status` = `Tianji`

All in one project!

Expand Down
2 changes: 1 addition & 1 deletion docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ services:
ports:
- "12345:12345"
environment:
DATABASE_URL: postgresql://tianji:tianji@db:5432/tianji
DATABASE_URL: postgresql://tianji:tianji@postgres:5432/tianji
JWT_SECRET: replace-me-with-a-random-string
ALLOW_REGISTER: "false"
ALLOW_OPENAPI: "true"
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
"dev": "nodemon",
"start": "cross-env NODE_ENV=production node ./dist/server/main.js",
"start:docker": "pnpm db:migrate:apply && pnpm db:generate && pnpm start",
"build": "pnpm build:client && pnpm build:server && pnpm build:tracker && pnpm build:geo",
"build": "pnpm build:tracker && pnpm build:client && pnpm build:server && pnpm build:geo",
"build:client": "vite build",
"build:server": "tsc -p tsconfig.server.json",
"build:tracker": "ts-node scripts/build-tracker.ts",
Expand Down

0 comments on commit e41ab16

Please sign in to comment.