Skip to content

Commit

Permalink
fix: update readme values (#1015)
Browse files Browse the repository at this point in the history
  • Loading branch information
spaenleh authored Feb 16, 2024
1 parent 1e31079 commit 6cdab81
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 3 deletions.
7 changes: 6 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
[![GitHub Release](https://img.shields.io/github/release/graasp/graasp-builder)]()
![Cypress CI](https://github.com/graasp/graasp-builder/actions/workflows/ci.yml/badge.svg?branch=main)
![typescript version](https://img.shields.io/github/package-json/dependency-version/graasp/graasp-builder/dev/typescript)
[![gitlocalized ](https://gitlocalize.com/repo/8885/whole_project/badge.svg)](https://gitlocalize.com/repo/8885/whole_project?utm_source=badge)
[![gitlocalized](https://gitlocalize.com/repo/8885/whole_project/badge.svg)](https://gitlocalize.com/repo/8885/whole_project?utm_source=badge)

<!-- ALL-CONTRIBUTORS-BADGE:START - Do not remove or modify this section -->

Expand All @@ -22,6 +22,11 @@ VITE_PORT=3111
VITE_GRAASP_API_HOST=http://localhost:3000
VITE_SHOW_NOTIFICATIONS=true
VITE_GRAASP_AUTH_HOST=http://localhost:3001
VITE_GRAASP_PLAYER_HOST=http://localhost:3112
VITE_GRAASP_ANALYZER_HOST=http://localhost:3113
VITE_GRAASP_LIBRARY_HOST=http://localhost:3115
VITE_GRAASP_ACCOUNT_HOST=http://localhost:3114

# in prod, it is https://go.graasp.org
VITE_GRAASP_REDIRECTION_HOST=http://localhost:3000/items/short-links
VITE_H5P_INTEGRATION_URL=
Expand Down
4 changes: 2 additions & 2 deletions src/config/env.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,11 +9,11 @@ export const GRAASP_AUTH_HOST =
export const GRAASP_PLAYER_HOST =
import.meta.env.VITE_GRAASP_PLAYER_HOST || 'http://localhost:3112';
export const GRAASP_LIBRARY_HOST =
import.meta.env.VITE_GRAASP_LIBRARY_HOST || 'http://localhost:3005';
import.meta.env.VITE_GRAASP_LIBRARY_HOST || 'http://localhost:3115';
export const GRAASP_ANALYZER_HOST =
import.meta.env.VITE_GRAASP_ANALYZER_HOST || 'http://localhost:3113';
export const GRAASP_ACCOUNT_HOST =
import.meta.env.VITE_GRAASP_ACCOUNT_HOST || 'http://localhost:3115';
import.meta.env.VITE_GRAASP_ACCOUNT_HOST || 'http://localhost:3114';

export const GRAASP_REDIRECTION_HOST = import.meta.env
.VITE_GRAASP_REDIRECTION_HOST;
Expand Down

0 comments on commit 6cdab81

Please sign in to comment.