Skip to content

Commit

Permalink
rename project
Browse files Browse the repository at this point in the history
  • Loading branch information
pratyush1712 committed May 9, 2024
1 parent 4a7e7db commit 3f0075c
Show file tree
Hide file tree
Showing 61 changed files with 193 additions and 335 deletions.
28 changes: 28 additions & 0 deletions .github/PULL_REQUEST_TEMPLATE.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
# Summary

<!-- Describe the changes you made in this PR -->

## Checklist

- [ ] I have read the [CONTRIBUTING.md](CONTRIBUTING.md) document
- [ ] I have added the necessary tests
- [ ] I have updated the documentation
- [ ] I have added the necessary comments in the code
- [ ] I have added the necessary labels
- [ ] I have added the necessary assignees

## Screenshots

<!-- Add screenshots if necessary -->

## Additional Information

<!-- Add any additional information if necessary -->

## Related Issues

<!-- Add any related issues if necessary -->

## Test Plan

<!-- Add the test plan if necessary -->
23 changes: 23 additions & 0 deletions .github/workflows/deploy-backend.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
name: Vercel Production Deployment
env:
VERCEL_ORG_ID: ${{ secrets.VERCEL_ORG_ID }}
VERCEL_PROJECT_ID: ${{ secrets.VERCEL_BACKEND_PROJECT_ID }}
on:
push:
branches:
- master
paths:
- "CleverHug-Backend/**"
jobs:
Deploy-Production:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Install Vercel CLI
run: npm install --global vercel@latest
- name: Pull Vercel Environment Information
run: vercel pull --yes --environment=production --token=${{ secrets.VERCEL_TOKEN }}
- name: Build Project Artifacts
run: vercel build --prod --token=${{ secrets.VERCEL_TOKEN }}
- name: Deploy Project Artifacts to Vercel
run: vercel deploy --prebuilt --prod --token=${{ secrets.VERCEL_TOKEN }}
23 changes: 23 additions & 0 deletions .github/workflows/deploy-frontend.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
name: Vercel Production Deployment
env:
VERCEL_ORG_ID: ${{ secrets.VERCEL_ORG_ID }}
VERCEL_PROJECT_ID: ${{ secrets.VERCEL_FRONTEND_PROJECT_ID }}
on:
push:
branches:
- master
paths:
- "CleverHug-Frontend/**"
jobs:
Deploy-Production:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Install Vercel CLI
run: npm install --global vercel@latest
- name: Pull Vercel Environment Information
run: vercel pull --yes --environment=production --token=${{ secrets.VERCEL_TOKEN }}
- name: Build Project Artifacts
run: vercel build --prod --token=${{ secrets.VERCEL_TOKEN }}
- name: Deploy Project Artifacts to Vercel
run: vercel deploy --prebuilt --prod --token=${{ secrets.VERCEL_TOKEN }}
4 changes: 1 addition & 3 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,4 @@
*.env.production.local
npm-debug.log*
yarn-debug.log*
yarn-error.log*

affirmations-frontend/.vscode
yarn-error.log*
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
"tabWidth": 4,
"bracketSpacing": true,
"arrowParens": "avoid",
"printWidth": 150,
"printWidth": 140,
"proseWrap": "never",
"endOfLine": "lf"
}
5 changes: 5 additions & 0 deletions CleverHug-Frontend/.vscode/settings.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
{
"editor.defaultFormatter": "esbenp.prettier-vscode",
"editor.formatOnSave": true,
"json.format.enable": true
}
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,6 @@
"private": true,
"dependencies": {
"@langchain/community": "^0.0.55",
"@langchain/core": "^0.1.62",
"@langchain/google-genai": "^0.0.12",
"@langchain/openai": "^0.0.28",
"langchain": "^0.1.36",
"react": "^18.3.1",
Expand All @@ -18,10 +16,6 @@
"web-vitals": "^2.1.4"
},
"devDependencies": {
"@testing-library/jest-dom": "^5.17.0",
"@testing-library/react": "^13.4.0",
"@testing-library/user-event": "^13.5.0",
"@types/jest": "^27.5.2",
"@types/node": "^16.18.97",
"@types/react": "^18.3.1",
"@types/react-dom": "^18.3.0",
Expand Down
Loading

0 comments on commit 3f0075c

Please sign in to comment.