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

github credits page #1789

Merged
merged 14 commits into from
Sep 9, 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
2 changes: 2 additions & 0 deletions web/docusaurus.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ const fs = require('fs');

const HOST = process.env.APP_HOST || 'https://ossinsight.io';
const API_BASE = process.env.APP_API_BASE || 'https://api.ossinsight.io';
const GIFT_APP_API_BASE = process.env.GIFT_APP_API_BASE || 'https://us-west-2.prod.aws.tidbcloud.com';
const DATABASE_URL = process.env.DATABASE_URL || '';
const SENTRY_DSN = process.env.SENTRY_DSN || '';

Expand Down Expand Up @@ -66,6 +67,7 @@ const config = {
path.resolve(__dirname, 'plugins/define'),
{
'process.env.APP_API_BASE': JSON.stringify(API_BASE),
'process.env.GIFT_APP_API_BASE': JSON.stringify(GIFT_APP_API_BASE),
'process.env.SENTRY_DSN': SENTRY_DSN ? JSON.stringify(SENTRY_DSN) : undefined,
}
],
Expand Down
288 changes: 288 additions & 0 deletions web/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 2 additions & 1 deletion web/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"private": true,
"scripts": {
"docusaurus": "docusaurus",
"start": "docusaurus start",
"start": "docusaurus start --port 30000",
"start-silence": "ENABLE_BUNDLER_ANALYZE=false docusaurus start --host 0.0.0.0 --port 30000 --no-open",
"build": "docusaurus build",
"swizzle": "docusaurus swizzle",
Expand Down Expand Up @@ -95,6 +95,7 @@
"eslint-plugin-n": "^15.4.0",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-react": "^7.31.10",
"framer-motion": "^6.5.1",
"human-format": "^1.0.0",
"node-fetch": "^3.2.4",
"param-case": "^3.0.4",
Expand Down
Loading
Loading