Skip to content

Commit

Permalink
# feat: add image upload and similarity search functionality with sta…
Browse files Browse the repository at this point in the history
…tic file support

- Add route for uploading images (/upload/)
- Add route for serving uploaded images (/uploads/{image_hash}.jpg)
- Serve static files from the /static directory
- Display form for image upload on the root route (/)
- Integrate with S3 for storing uploaded images
- Utilize find_similar_images from image_utils for finding similar images
  • Loading branch information
Solrikk authored Jul 18, 2024
1 parent 2828234 commit 84bcf3d
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -84,13 +84,10 @@ cd PicTrace

![PicTrace Demo](https://github.com/Solrikk/PicTrace/blob/main/assets/gif/shell-PicTrrace.gif)

### Steps to Set Up PicTrace:
2. **Set up a virtual environment:** ✔️
2. **Create the virtual environment:** ✔️

_A virtual environment is crucial for isolating the project dependencies from your global Python setup, preventing version conflicts among different projects. To create and activate a virtual environment, execute the following commands:_

1. **Create the virtual environment:**

Run the following command to create a virtual environment named `venv` in the root of your project directory: **python -m venv venv**
- Execute the following command to activate the virtual environment on Windows: **venv\Scripts\activate**
- Execute the following command to activate the virtual environment on Linux and macOS: **source venv/bin/activate**
Expand Down

0 comments on commit 84bcf3d

Please sign in to comment.