https://github.com/cub3d/quickpasteredux
https://github.com/cub3d/quickpasteredux
Last synced: 5 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/cub3d/quickpasteredux
- Owner: CUB3D
- License: agpl-3.0
- Created: 2019-03-21T12:26:17.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2023-02-14T22:19:28.000Z (over 3 years ago)
- Last Synced: 2024-12-31T03:42:32.403Z (over 1 year ago)
- Language: JavaScript
- Size: 1.94 MB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
- License: LICENSE.md
Awesome Lists containing this project
README
# QuickPasteRedux
### A simple pastebin clone in python and [starlette](https://www.starlette.io)

## Try it out
Current stable version -> [qp.cub3d.pw](https://qp.cub3d.pw)
## How to run
- Clone the repo: ```git clone https://github.com/CUB3D/QuickPasteRedux```
- Copy .env.default to .env and set the database uri
- Install the dependencies: ```pip install -r requirements.txt```
- Start the server: ```hypercorn app.main:app -c Hypercorn-DEV.toml --access-log - --error-log -```
## Running with docker-compose
```
version: '3'
services:
quickpasteredux:
container_name: Web
build: .
ports:
- "8086:8080"
volumes:
- files:/home/code/files
environment:
DEBUG: "false"
DATABASE_URL:
restart: unless-stopped
volumes:
files:
```