Skip to content

Commit

Permalink
New frontend
Browse files Browse the repository at this point in the history
  • Loading branch information
BeatrixCohere committed Aug 8, 2024
1 parent 3651983 commit 702c58a
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion src/interfaces/assistants_web/.env.development
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ API_HOSTNAME=http://backend:8000

# Client
NEXT_PUBLIC_API_HOSTNAME=http://localhost:8000
NEXT_PUBLIC_FRONTEND_HOSTNAME=http://localhost:4444
NEXT_PUBLIC_FRONTEND_HOSTNAME=http://localhost:4000
NEXT_PUBLIC_HAS_CUSTOM_LOGO=false
NEXT_PUBLIC_GOOGLE_DRIVE_CLIENT_ID='client-id'
NEXT_PUBLIC_GOOGLE_DRIVE_DEVELOPER_KEY='developer-key'
2 changes: 1 addition & 1 deletion src/interfaces/assistants_web/.env.production
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ API_HOSTNAME=http://backend:8000

# Client
NEXT_PUBLIC_API_HOSTNAME=http://localhost:8000
NEXT_PUBLIC_FRONTEND_HOSTNAME=http://localhost:4444
NEXT_PUBLIC_FRONTEND_HOSTNAME=http://localhost:4000
NEXT_PUBLIC_HAS_CUSTOM_LOGO=false
NEXT_PUBLIC_GOOGLE_DRIVE_CLIENT_ID='client-id'
NEXT_PUBLIC_GOOGLE_DRIVE_DEVELOPER_KEY='developer-key'
6 changes: 3 additions & 3 deletions src/interfaces/assistants_web/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,15 +9,15 @@
"yarn": "9999"
},
"scripts": {
"dev": "next dev --port 4444",
"dev": "next dev --port 4000",
"build": "next build",
"lint": "next lint",
"ts-lint": "tsc -noEmit -incremental -watch",
"format": "prettier --check \"**/*.{js,json,ts,tsx,md}\"",
"format:write": "prettier --write \"**/*.{js,json,ts,tsx,md}\"",
"next:build": "next build",
"start": "next build && next start --port 4444",
"start:single-docker": "next build && next start --port 4444",
"start": "next build && next start --port 4000",
"start:single-docker": "next build && next start --port 4000",
"start:single-docker-proxy": "next build && next start --port 8090",
"generate:client": "openapi-ts",
"storybook": "storybook dev -p 6006",
Expand Down

0 comments on commit 702c58a

Please sign in to comment.