# simple-flask-s3-uploader **Repository Path**: mirrors_Azure/simple-flask-s3-uploader ## Basic Information - **Project Name**: simple-flask-s3-uploader - **Description**: No description available - **Primary Language**: Unknown - **License**: MIT - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2024-10-29 - **Last Updated**: 2026-04-11 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # Simple Flask AWS S3 Uploader Simple and quick AWS S3 upload capability for Flask using Boto3 & env variables ## Download and install locally 1. `git clone git@github.com:jelmerdejong/simple-flask-s3-uploader.git` 2. `cd simple-flask-s3-uploader` 3. `mkvirtualenv simple-flask-s3-uploader` 4. `pip install -r requirements.txt` ## Set local environment variables Open your environments postactive file (`nano $VIRTUAL_ENV/bin/postactivate`) and add the following lines: ``` cd ~/Projects/simple-flask-s3-uploader export APP_SETTINGS="config.DevelopmentConfig" export SECRET_KEY="your-random-secret-key" export S3_BUCKET="your-bucket-name" export S3_KEY="your-aws-secret-key" export S3_SECRET_ACCESS_KEY="your-aws-secret-access-key" ``` ## Run it! 1. `export FLASK_APP=app.py` 2. `flask run`