-
-
Notifications
You must be signed in to change notification settings - Fork 0
feat: premium subscriptions go-live #19
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
Merged
Merged
Changes from all commits
Commits
Show all changes
15 commits
Select commit
Hold shift + click to select a range
6cdfbbb
docs: add GEMINI.md for project context
nathanialhenniges c92904e
feat: add /owner premium test-list command
nathanialhenniges 57b54b3
Merge pull request #18 from MrDemonWolf/FLUFF-18-owner-premium-test-list
nathanialhenniges c5cd344
docs: rewrite TODO.md as premium go-live guide
nathanialhenniges 8849c66
refactor: migrate from Prisma/pnpm/Mocha to Drizzle/Bun/bun:test
6deb936
fix: resolve test failures from cross-file mock.module interference
nathanialhenniges d09c917
fix: refactor test mocks to use top-level pattern for CI stability
nathanialhenniges 970cf5f
fix: add DI to premium utils and refactor interactionCreate test
nathanialhenniges c1223bd
fix: rewrite premium tests as pure logic tests
nathanialhenniges 1030a99
fix: add missing setupAutocomplete to setup/index mock in ready test
nathanialhenniges 7a288b4
fix: add .gitkeep to drizzle/ for Docker build
nathanialhenniges de276b1
refactor: remove PostHog analytics completely
nathanialhenniges 529df5d
fix: add envSchema to top-level env.ts mocks for CI compatibility
nathanialhenniges 30e1ab0
fix: add envSchema to all env.ts mocks for CI compatibility
nathanialhenniges 31b3661
fix: extract envSchema to standalone file for CI test isolation
nathanialhenniges File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -8,5 +8,4 @@ dist | |
| .env.* | ||
| *.md | ||
| tests | ||
| .mocharc.yml | ||
| eslint.config.js | ||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Add
--no-install-recommendsto reduce image size and attack surface.The static analysis tool correctly identified that
apt-get installis missing the--no-install-recommendsflag. This flag prevents installation of recommended but non-essential packages, reducing image size and potential vulnerabilities.🐛 Proposed fix
📝 Committable suggestion
🧰 Tools
🪛 Trivy (0.69.3)
[error] 27-28: 'apt-get' missing '--no-install-recommends'
'--no-install-recommends' flag is missed: 'apt-get update && apt-get install -y openssl curl && rm -rf /var/lib/apt/lists/* && groupadd -r fluffboost && useradd -r -g fluffboost fluffboost'
Rule: DS-0029
Learn more
(IaC/Dockerfile)
🤖 Prompt for AI Agents