Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/supriyo-biswas/upaste
A tiny pastebin written using the Flask framework.
https://github.com/supriyo-biswas/upaste
flask pastebin python
Last synced: 10 days ago
JSON representation
A tiny pastebin written using the Flask framework.
- Host: GitHub
- URL: https://github.com/supriyo-biswas/upaste
- Owner: supriyo-biswas
- Created: 2017-09-25T07:52:44.000Z (about 7 years ago)
- Default Branch: master
- Last Pushed: 2023-05-01T20:57:03.000Z (over 1 year ago)
- Last Synced: 2024-10-08T17:03:30.320Z (about 1 month ago)
- Topics: flask, pastebin, python
- Language: Python
- Size: 14.6 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
- awesome-starred - supriyo-biswas/upaste - A tiny pastebin written using the Flask framework. (python)
README
# upaste
A tiny pastebin written using the [Flask](http://flask.pocoo.org/) framework.
## Manual installation
```bash
$ virtualenv -p python3 venv
$ . venv/bin/activate
$ pip install -r requirements.txt
$ python setup.py
$ FLASK_DEBUG=1 FLASK_APP=upaste.py flask run # For development
$ gunicorn -w 2 -b 0.0.0.0:5000 upaste:app # For production
```Use the `Dockerfile` to create a Docker image.
# License
[MIT](https://opensource.org/licenses/MIT)