Skip to content

Commit

Permalink
Fix using wrong/old ui port
Browse files Browse the repository at this point in the history
  • Loading branch information
myieye committed Jul 25, 2023
1 parent b68707d commit 8bfe7a6
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion deployment/base/collector-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ receivers:
# cors:
# allowed_origins:
# - "https://languagedepot.org"
# - "http://127.0.0.1:5173"
# - "http://127.0.0.1:3000"

# https://github.com/open-telemetry/opentelemetry-collector/blob/main/processor/README.md#recommended-processors
# The recommended core processors. The memory limiter probably won't do much, but it certainly doesn't hurt.
Expand Down
2 changes: 1 addition & 1 deletion frontend/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ pnpm run dev
pnpm run dev -- --open
```

The app will be running at [http://localhost:5173](http://localhost:5173) by default.
The app will be running at [http://localhost:3000](http://localhost:3000) by default.

> In order to configure the robot protection in forms, you'll need to `cp .env.example .env`
Expand Down
4 changes: 2 additions & 2 deletions frontend/src/routes/email/email.http
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
###
# @name Email Renderer

POST http://localhost:5173/email
POST http://localhost:3000/email
Content-Type: application/json

{
"template": "ForgotPassword",
"name": "http test",
"resetUrl": "http://localhost:5173/reset-password?token=1234567890"
"resetUrl": "http://localhost:3000/reset-password?token=1234567890"
}

0 comments on commit 8bfe7a6

Please sign in to comment.