Skip to content

Commit 0561713

Browse files
committed
OAuth2/OIDC
1 parent b97f39b commit 0561713

16 files changed

+2074
-195
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -61,3 +61,4 @@ src/test/integration/playwright/.auth/
6161
test-results/
6262
playwright-report/
6363
playwright-coverage/
64+
shared-constants.js

.zed/settings.json

Lines changed: 38 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
1+
{
2+
"theme": {
3+
"mode": "dark",
4+
"dark": "API-Explorer-II-Green",
5+
"light": "API-Explorer-II-Green"
6+
},
7+
"ui_font_size": 14,
8+
"buffer_font_size": 14,
9+
"terminal": {
10+
"font_size": 13,
11+
"line_height": "comfortable"
12+
},
13+
"project_panel": {
14+
"button": true,
15+
"default_width": 300,
16+
"dock": "left"
17+
},
18+
"tab_bar": {
19+
"show": true
20+
},
21+
"status_bar": {
22+
"show": true
23+
},
24+
"toolbar": {
25+
"breadcrumbs": true,
26+
"quick_actions": true
27+
},
28+
"workspace": {
29+
"save_on_focus_change": true
30+
},
31+
"git": {
32+
"enabled": true,
33+
"autoFetch": true
34+
},
35+
"format_on_save": "on",
36+
"show_whitespaces": "selection",
37+
"soft_wrap": "prefer_line"
38+
}

.zed/tasks.json

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
[
2+
{
3+
"label": "🟢 Open Terminal Here",
4+
"command": "gnome-terminal",
5+
"args": ["--title=\"🟢 API-Explorer\"", "--working-directory=${workspaceFolder}"],
6+
"reveal": "never"
7+
}
8+
]

.zed/theme.json

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
{
2+
"name": "API-Explorer-II-Green",
3+
"author": "Portal/Opey Development Setup",
4+
"themes": [
5+
{
6+
"name": "API-Explorer-II-Green",
7+
"appearance": "dark",
8+
"style": {
9+
"background": "#1e1e1e",
10+
"foreground": "#d4d4d4",
11+
"cursor": "#28A745",
12+
"selection": "#28A74533",
13+
"selected_line_background": "#28A74511",
14+
"line_number": "#858585",
15+
"active_line_number": "#28A745",
16+
"find_highlight": "#28A745",
17+
"border": "#28A74566",
18+
"panel_background": "#252526",
19+
"panel_focused_border": "#28A745",
20+
"tab_bar_background": "#2d2d30",
21+
"tab_active_background": "#28A74588",
22+
"status_bar_background": "#28A74566",
23+
"title_bar_background": "#28A74544",
24+
"toolbar_background": "#37373d"
25+
}
26+
}
27+
]
28+
}

0 commit comments

Comments
 (0)