diff options
Diffstat (limited to 'README.md')
| -rw-r--r-- | README.md | 13 |
1 files changed, 12 insertions, 1 deletions
@@ -23,10 +23,21 @@ a simple web app that converts markdown to pdf using pandoc and lualatex. ## run +### local + ```bash cd src/ python -m venv .venv source .venv/bin/activate pip install -r requirements.txt python app.py -```
\ No newline at end of file +``` + +### docker + +```bash +docker build -t likha-pdf . +docker run -p 5000:5000 likha-pdf +``` + +open `http://localhost:5000`
\ No newline at end of file |
