Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

updated yarn start in root package.json #1271

Merged
merged 9 commits into from
Aug 11, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 1 addition & 2 deletions app-config.example.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
app:
title: Janus IDP Backstage Showcase
baseUrl: http://localhost:3000
baseUrl: http://localhost:7007

organization:
name: My Org
Expand All @@ -15,7 +15,6 @@ backend:
- 'http:'
- 'https:'
cors:
origin: http://localhost:3000
methods: [GET, HEAD, PATCH, POST, PUT, DELETE]
credentials: true
database:
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
"prepare": "husky install",
"postinstall": "patch-package",
"ci": "turbo run lint build test",
"start": "turbo run start --parallel",
"start": "turbo run build --filter=app && turbo run start --filter=backend",
"start-backend": "turbo run start --filter=backend",
"build": "turbo run build",
"tsc": "tsc",
Expand Down
Loading