Skip to content

Commit ce21936

Browse files
committed
Merge remote-tracking branch 'origin/develop' into feature/RZA-250013
2 parents 15f899c + 8f7fa0d commit ce21936

File tree

168 files changed

+8774
-1302
lines changed

Some content is hidden

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

168 files changed

+8774
-1302
lines changed

.env.example

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
NODE_ENV=development
2+
LOG_LEVEL=debug
3+
PORT=4321
4+
5+
6+
GITHUB_CLIENT_ID=
7+
GITHUB_CLIENT_SECRET=
8+
9+
GOOGLE_CLIENT_ID=
10+
GOOGLE_CLIENT_SECRET=
11+
12+
FACEBOOK_CLIENT_ID=
13+
FACEBOOK_CLIENT_SECRET=
14+
15+
AUTH_TRUST_HOST=true
16+
AUTH_SECRET=
17+
18+
ENCRYPTION_KEY=

.githooks/pre-commit

Lines changed: 5 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -21,26 +21,12 @@ echo "Running pre-commit checks for branch: $BRANCH_NAME"
2121
echo "$BRANCH_NAME" | grep -Eq '^(feature|bugfix|hotfix|task)/[A-Za-z]+-[0-9]+'
2222
if [ $? -ne 0 ]; then
2323
echo "Error: Branch name '$BRANCH_NAME' is invalid."
24-
echo "Use a valid branch naming convention, e.g., feature/XYZ-123-description."
24+
<<<<<<< HEAD
25+
echo "Use a valid branch naming convention, e.g., feature|bugfix|hotfix|task/XYZ-123-description."
2526
exit 1
2627
fi
27-
28-
# Step 2: Run poetry linting tools
29-
echo "Running poetry linting tools..."
30-
if ! poetry run flake8 .; then
31-
echo "flake8 failed. Aborting commit."
32-
exit 1
33-
fi
34-
35-
if ! poetry run black --check .; then
36-
echo "black failed. Aborting commit."
28+
=======
29+
echo "Use a valid branch naming convention, e.g., feature|bugfix|hotfix|task/XYZ-123."
3730
exit 1
3831
fi
39-
40-
if ! poetry run mypy .; then
41-
echo "mypy failed. Aborting commit."
42-
exit 1
43-
fi
44-
45-
echo "Pre-commit checks passed!"
46-
exit 0
32+
>>>>>>> main

.github/ISSUE_TEMPLATE/bug_report.md

Lines changed: 0 additions & 42 deletions
This file was deleted.

.github/workflows/deploy.yml

Lines changed: 39 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,39 @@
1+
name: Deploy to GitHub Pages
2+
3+
on:
4+
# Trigger the workflow every time you push to the `main` branch
5+
# Using a different branch name? Replace `main` with your branch’s name
6+
push:
7+
branches: [main]
8+
# Allows you to run this workflow manually from the Actions tab on GitHub.
9+
workflow_dispatch:
10+
11+
# Allow this job to clone the repo and create a page deployment
12+
permissions:
13+
contents: read
14+
pages: write
15+
id-token: write
16+
17+
jobs:
18+
build:
19+
runs-on: ubuntu-latest
20+
steps:
21+
- name: Checkout your repository using git
22+
uses: actions/checkout@v4
23+
- name: Install, build, and upload your site
24+
uses: withastro/action@v3
25+
with:
26+
path: . # The root location of your Astro project inside the repository. (optional)
27+
node-version: 20 # The specific version of Node that should be used to build your site. Defaults to 16. (optional)
28+
package-manager: npm # The Node package manager that should be used to install dependencies and build your site. Automatically detected based on your lockfile. (optional)
29+
30+
deploy:
31+
needs: build
32+
runs-on: ubuntu-latest
33+
environment:
34+
name: github-pages
35+
url: ${{ steps.deployment.outputs.page_url }}
36+
steps:
37+
- name: Deploy to GitHub Pages
38+
id: deployment
39+
uses: actions/deploy-pages@v4
Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
name: "Auto Replace X in Issue Title"
2+
3+
on:
4+
issues:
5+
types: [opened]
6+
permissions:
7+
issues: write
8+
9+
jobs:
10+
update_issue_title:
11+
runs-on: ubuntu-latest
12+
steps:
13+
- name: Replace 'X' with issue number
14+
env:
15+
GH_TOKEN: ${{ secrets.ISSUE_TOKEN }}
16+
run: |
17+
ISSUE_NUMBER=${{ github.event.issue.number }}
18+
OLD_TITLE="${{ github.event.issue.title }}"
19+
20+
# Replace 'X' with the actual issue number in the title
21+
NEW_TITLE=$(echo "$OLD_TITLE" | sed "s/X/$ISSUE_NUMBER/g")
22+
23+
# Update issue title using GitHub API
24+
gh issue edit "$ISSUE_NUMBER" --title "$NEW_TITLE" --repo "${{ github.repository }}"
25+
shell: bash

.gitignore

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,6 @@ desktop.ini
2020
# IDE
2121
*.sublime-*
2222
/.idea
23-
.vscode/*
2423
*~
2524

2625
# environment variables

.vscode/cspell.json

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
{
2+
"dictionaryDefinitions": [
3+
{
4+
"name": "projectTerms",
5+
"path": "./dictionaries/project-words.txt"
6+
},
7+
{
8+
"name": "teamMember",
9+
"path": "./dictionaries/team-member.txt"
10+
},
11+
{
12+
"name": "geo",
13+
"path": "./dictionaries/india.txt"
14+
}
15+
],
16+
"dictionaries": ["projectTerms", "teamMember", "india"],
17+
"ignorePaths": ["**/*.svg", "src/assets/json/*.json"],
18+
"languageSettings": [
19+
{
20+
"languageId": "*",
21+
"dictionaries": ["projectTerms"]
22+
},
23+
{
24+
"languageId": "json, md",
25+
"dictionaries": ["teamMember", "geo"]
26+
}
27+
],
28+
"enableFiletypes": ["astro", "jsx", "tsx"]
29+
}

.vscode/dictionaries/india.txt

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
Andhra
2+
Kuchipudi
3+
Pradesh
4+
Sankranti
Lines changed: 44 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,44 @@
1+
argmax
2+
argmin
3+
astro
4+
astrojs
5+
astype
6+
audiorec
7+
audiorecorder
8+
bincount
9+
clsx
10+
cmdk
11+
datetime
12+
dhaga
13+
ensurepip
14+
fontsource
15+
frontmatter
16+
getbuffer
17+
GSTIN
18+
heroicons
19+
hookform
20+
imread
21+
imwrite
22+
jsonify
23+
kmeans
24+
linalg
25+
lucide
26+
Organja
27+
orgenja
28+
Peina
29+
prerender
30+
Reddy
31+
roboto
32+
Rushi
33+
shadcn
34+
signup
35+
sitemapindex
36+
skimage
37+
streamlit
38+
tailwindcss
39+
threadzip
40+
Threazip
41+
vaul
42+
venv
43+
waitlist
44+
werkzeug
Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
chebale
2+
hitesh
3+
keshav
4+
malhar
5+
omkar
6+
parvez
7+
soumyanil
8+
xkeshav
9+
aditya
10+
vansh
11+
vamil

0 commit comments

Comments
 (0)