Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/tiagocordeiro/flask-cloudinary
Cloudinary Flask sample project
https://github.com/tiagocordeiro/flask-cloudinary
Last synced: about 2 months ago
JSON representation
Cloudinary Flask sample project
- Host: GitHub
- URL: https://github.com/tiagocordeiro/flask-cloudinary
- Owner: tiagocordeiro
- Created: 2018-06-20T01:32:33.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2024-11-13T23:09:30.000Z (2 months ago)
- Last Synced: 2024-11-14T00:19:15.797Z (2 months ago)
- Language: Python
- Homepage:
- Size: 14.6 KB
- Stars: 1
- Watchers: 1
- Forks: 1
- Open Issues: 6
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
Cloudinary Flask sample project
===============================A simple Flask application that performs image upload and generates on the transformations of the uploaded image.
## Installing and running
```
$ git clone https://github.com/tiagocordeiro/flask-cloudinary.git
$ cd flask-cloudinary
$ python3 -m venv venv
$ source venv/bin/activate
(venv)$ pip install -r requirements.txt
```
* Get [a cloudinary account](https://cloudinary.com/users/register/free)
* Copy the `CLOUDINARY_URL` environment variable from the [Management Console](https://cloudinary.com/console):
```
(venv)$ export CLOUDINARY_URL=cloudinary://API-Key:API-Secret@Cloud-name
(venv)$ flask run
```
* Browse to http://127.0.0.1:5000/# TODO
[ ] Melhorar documentaçãoGood luck!