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

feat: Add GitHub Scanning app #663

Open
wants to merge 41 commits into
base: develop
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from 1 commit
Commits
Show all changes
41 commits
Select commit Hold shift + click to select a range
6a19e84
feat: create intial github secret scanner
muntaxir4 Nov 30, 2024
1b63829
feat: add GitHubScanner class
muntaxir4 Dec 1, 2024
7d29ef1
fix(platform): Resolve loading SVG blocking input field interaction (…
Allan2000-Git Dec 2, 2024
9da0798
feat(schema, api-client): Migrate workspace-membership schemas and ty…
muntaxir4 Dec 3, 2024
e619c72
feat(schema): Add User type inference from UserSchema (#574)
muntaxir4 Dec 3, 2024
f73dd7e
feat(platform): Added screen for CREATE NEW PROJECT (#540)
poswalsameer Dec 3, 2024
8302051
chore(web): Update dockerfile
rajdip-b Dec 3, 2024
ef29602
chore(release): 2.8.0 [skip ci]
semantic-release-bot Dec 3, 2024
f855323
docs: Updated alignment of pictures in API Testing page
rajdip-b Dec 4, 2024
cb0ed7c
docs: Updated alignment of pictures in API Testing page
rajdip-b Dec 4, 2024
9517f67
chore(schema): Add describe blocks in tests for each kind of schema (…
muntaxir4 Dec 5, 2024
cdbf1bc
fix(api): Enable global project access (#580)
muntaxir4 Dec 7, 2024
f83b952
feat(api): Add email template for inviting user to workspace (#480)
Allan2000-Git Dec 7, 2024
2605004
feat(api): Add logout endpoint to clear token cookie (#581)
ShreyamKundu Dec 8, 2024
f8f0505
feat(api): Add email template for sending OTP to the user (#582)
Allan2000-Git Dec 8, 2024
8029c29
fix(platform): Type error in navbar
rajdip-b Dec 8, 2024
901cbbc
fix(api): Empty name `""` accepted as a valid name while creating env…
zaheer-Khan3260 Dec 9, 2024
84d259e
feat(api): Add endpoint to fetch all workspace invitations for a user…
muntaxir4 Dec 13, 2024
17aacc7
refactor(web): Changed the text in the hero section of the web applic…
poswalsameer Dec 13, 2024
0edd8cf
feat(platofrm): Added online/offline status detection in the platform…
Allan2000-Git Dec 14, 2024
2ece96a
feat(cli): Add functionality to operate on Workspace Membership (#589)
muntaxir4 Dec 16, 2024
87fb1b3
fix(schema): Add versions field to project secrets and variables resp…
muntaxir4 Dec 16, 2024
e694af6
chore(ci): Update web deployment to push to ACR
rajdip-b Dec 17, 2024
1678b63
chore(ci): Fixed environment name
rajdip-b Dec 17, 2024
3309c4c
chore(ci): Push docker images of platform and API to ACR
rajdip-b Dec 17, 2024
84a574f
fix(docker): Update build script
rajdip-b Dec 17, 2024
cb17777
chore(platoform): Swapped all legacy API calls with `@keyshade/api-cl…
poswalsameer Dec 17, 2024
0430dfc
chore: Update platform build command
rajdip-b Dec 17, 2024
c29c4c4
chore(ci): Add internal package dependencies to existing workflows (#…
muntaxir4 Dec 19, 2024
6743c9b
feat: create intial github secret scanner
muntaxir4 Nov 30, 2024
5c6a621
feat: add GitHubScanner class
muntaxir4 Dec 1, 2024
c6241f1
Implement spawn-able github scan api
muntaxir4 Jan 5, 2025
8eb7ad6
github-scanner: migrate to next.js backend and add http streaming re…
muntaxir4 Jan 23, 2025
5b5bc24
refactor: rename github-scan to github-scanner and update functions t…
muntaxir4 Jan 25, 2025
e743f64
Merge remote-tracking branch 'develop' into feat/github-scan
muntaxir4 Jan 25, 2025
66471f6
update pnpm-lock and fix lints
muntaxir4 Jan 25, 2025
92550b7
resolve merge conflicts
muntaxir4 Jan 25, 2025
24ba9a9
Merge branch 'develop' into feat/github-scan
muntaxir4 Jan 25, 2025
4a138e7
update pnpm-lock file
muntaxir4 Jan 25, 2025
6dae818
fix unanwanted files
muntaxir4 Jan 25, 2025
021ca06
Merge branch 'develop' into feat/github-scan
kriptonian1 Jan 28, 2025
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
Prev Previous commit
Next Next commit
fix unanwanted files
  • Loading branch information
muntaxir4 committed Jan 25, 2025
commit 6dae818e78c598277519e523610dd081548e7f87
3 changes: 2 additions & 1 deletion apps/platform/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,8 @@ COPY --from=installer /app/apps/platform/package.json .

# Automatically leverage output traces to reduce image size
# https://nextjs.org/docs/advanced-features/output-file-tracing
COPY --from=installer --chown=nextjs:nodejs /app/apps/platform/.next ./apps/platform/.next
COPY --from=installer --chown=nextjs:nodejs /app/apps/platform/.next/standalone ./
COPY --from=installer --chown=nextjs:nodejs /app/apps/platform/.next/static ./apps/platform/.next/static
COPY --from=installer --chown=nextjs:nodejs /app/apps/platform/public ./apps/platform/public


Expand Down
Loading
Loading