Skip to content

Commit b5e7738

Browse files
committed
20250518161841 Merge develop-postgres into develop
1 parent bfc2117 commit b5e7738

File tree

1,727 files changed

+169442
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

1,727 files changed

+169442
-0
lines changed

.coderabbit.yaml

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
# yaml-language-server: $schema=https://coderabbit.ai/integrations/schema.v2.json
2+
# More information at this link: https://docs.coderabbit.ai/configure-coderabbit
3+
4+
language: "en-US"
5+
early_access: false
6+
chat:
7+
auto_reply: true
8+
reviews:
9+
profile: "assertive"
10+
poem: false
11+
request_changes_workflow: true
12+
high_level_summary: true
13+
review_status: true
14+
collapse_walkthrough: false
15+
auto_review:
16+
enabled: true
17+
drafts: false
18+
base_branches:
19+
- develop-postgres
20+
- develop
21+
- main
22+
path_filters:
23+
- '!**/docs/docs/**'
24+
- "!*.html"
25+
- "!*.md"
26+
- "!*.svg"

.devcontainer/devcontainer.json

Lines changed: 79 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,79 @@
1+
// https://containers.dev/implementors/json_reference/
2+
// https://github.com/orgs/devcontainers/discussions/4
3+
{
4+
"$schema": "https://raw.githubusercontent.com/devcontainers/spec/main/schemas/devContainer.schema.json",
5+
"containerUser": "talawa",
6+
"customizations": {
7+
"vscode": {
8+
"extensions": [
9+
"biomejs.biome",
10+
"esbenp.prettier-vscode",
11+
"GraphQL.vscode-graphql",
12+
"GraphQL.vscode-graphql-syntax",
13+
"redhat.vscode-yaml"
14+
],
15+
"settings": {
16+
"editor.codeActionsOnSave": {
17+
"quickfix.biome": "explicit",
18+
"source.organizeImports.biome": "explicit"
19+
},
20+
"editor.formatOnSave": true,
21+
"editor.lineNumbers": "relative",
22+
"editor.mouseWheelZoom": true,
23+
"editor.wordWrap": "on",
24+
"typescript.enablePromptUseWorkspaceTsdk": true,
25+
"typescript.tsdk": "./node_modules/typescript/lib",
26+
"[graphql]": {
27+
"editor.defaultFormatter": "biomejs.biome"
28+
},
29+
"[javascript]": {
30+
"editor.defaultFormatter": "biomejs.biome"
31+
},
32+
"[json]": {
33+
"editor.defaultFormatter": "biomejs.biome"
34+
},
35+
"[jsonc]": {
36+
"editor.defaultFormatter": "biomejs.biome"
37+
},
38+
"[markdown]": {
39+
"editor.defaultFormatter": "esbenp.prettier-vscode"
40+
},
41+
"[typescript]": {
42+
"editor.defaultFormatter": "biomejs.biome"
43+
},
44+
"[yaml]": {
45+
"editor.defaultFormatter": "redhat.vscode-yaml"
46+
}
47+
}
48+
}
49+
},
50+
"dockerComposeFile": [
51+
"../compose.yaml",
52+
"../docker/compose.testing.yaml",
53+
"../docker/compose.devcontainer.yaml"
54+
],
55+
"features": {
56+
// https://github.com/devcontainers/features/tree/main/src/common-utils
57+
"ghcr.io/devcontainers/features/common-utils": {
58+
"installZsh": false,
59+
"installOhMyZsh": false,
60+
"installOhMyZshConfig": false,
61+
"nonFreePackages": true,
62+
"username": "talawa"
63+
},
64+
// https://github.com/devcontainers/features/tree/main/src/git
65+
"ghcr.io/devcontainers/features/git": {},
66+
// https://github.com/devcontainers/features/tree/main/src/github-cli
67+
"ghcr.io/devcontainers/features/github-cli": {}
68+
},
69+
"init": true,
70+
"initializeCommand": "/bin/sh -c '[ ! -f .env ] && cp ./envFiles/.env.devcontainer ./.env || true'",
71+
"name": "talawa_api",
72+
"overrideCommand": true,
73+
"postCreateCommand": "sudo chown talawa:talawa ./.pnpm-store ./node_modules && fnm install && fnm use && corepack enable npm && corepack enable && corepack install && pnpm install",
74+
"postStartCommand": "pnpm install",
75+
"remoteUser": "talawa",
76+
"service": "api",
77+
"shutdownAction": "stopCompose",
78+
"workspaceFolder": "/home/talawa/api"
79+
}

0 commit comments

Comments
 (0)