https://github.com/ogarcia/lesma
Simple paste app friendly with browser and command line
https://github.com/ogarcia/lesma
paste
Last synced: 2 months ago
JSON representation
Simple paste app friendly with browser and command line
- Host: GitHub
- URL: https://github.com/ogarcia/lesma
- Owner: ogarcia
- License: gpl-3.0
- Created: 2017-07-24T19:35:24.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2023-01-29T14:52:34.000Z (about 3 years ago)
- Last Synced: 2026-01-17T17:31:33.306Z (2 months ago)
- Topics: paste
- Language: Python
- Homepage: https://lesma.eu
- Size: 105 KB
- Stars: 4
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Funding: .github/FUNDING.yml
- License: LICENSE
Awesome Lists containing this project
README
# The project has moved
lesma code is now hosted in [GitLab][lesma] and rewritten in [Rust][rust]
- New Git: https://gitlab.com/ogarcia/lesma
- New bugtracker: https://gitlab.com/ogarcia/lesma/-/issues
- New tag list: https://gitlab.com/ogarcia/lesma/-/tags
[lesma]: https://gitlab.com/ogarcia/lesma
[rust]: https://www.rust-lang.org
# lesma
(c) 2017-2023 Óscar García Amor
Redistribution, modifications and pull requests are welcomed under the terms
of GPLv3 license.
lesma is a simple paste app, friendly with browser and command line, with
files as storage backend. You can see in action in https://lesma.eu.
## Install
To install lesma follow this steps.
### From source
```sh
git clone https://github.com/ogarcia/lesma.git
virtualenv3 ./lesma-venv
source ./lesma-venv/bin/activate
cd lesma
python setup.py install
```
### From PyPI
```sh
virtualenv3 ./lesma-venv
source ./lesma-venv/bin/activate
pip install lesma
```
## Run
In your virtualenv run `lesma server`.
```sh
source ./lesma-venv/bin/activate
lesma server
```
Or without activate virtualenv.
```
./lesma-venv/bin/lesma server
```
Run `lesma` without parameters to see help.