-
Notifications
You must be signed in to change notification settings - Fork 11
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: support for CRUD on files from cloudflare #24
Merged
Conversation
This file contains 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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
As referenced in (#21), this pull request is preparing us for the RAG implementation by supporting PDF CRUD (besides update) actions. It also includes several changes to improve the configuration, documentation, and database schema of the project.
API Implementation
GET /api/files
- List all files in the Cloudflare R2 bucketDELETE /api/files?id=123
- Delete a file with theid
123GET /api/files/[id]/sign
- Get the presigned URL for a fileid
(How we allow the client to view them)POST /api/upload/pdf
- Upload a PDF to the Cloudflare bucket and metadata to the databaseUI/UX Changes
/upload
- contains a form to upload a file and link to see all files/files
- a list of all files in the Cloudflare R2 bucket, including buttons to preview and delete them.Sign Out
- logs the current user out of the application.Configuration Improvements:
.env.example
file with placeholders for authentication secrets, database configuration, Pinecone, OpenAI, and Cloudflare R2 settings.Documentation Updates:
README.md
to include instructions for copying the.env.example
file, starting the PostgreSQL database using Docker, and added a new troubleshooting section.package.json
scripts, with descriptions on what they do.Dependency Additions:
@aws-sdk/client-s3
,@aws-sdk/s3-request-presigner
, andaxios
topackage.json
.Database Schema Changes:
course_materials
table in the database with fields forid
,title
,fileName
,fileUrl
,uploadedAt
, anddescription
. (Currently, we can continue to refine this as we go!)