aboutsummaryrefslogtreecommitdiffstats
path: root/README.md
diff options
context:
space:
mode:
Diffstat (limited to 'README.md')
-rw-r--r--README.md13
1 files changed, 12 insertions, 1 deletions
diff --git a/README.md b/README.md
index 1bf6ab6..bcf0e83 100644
--- a/README.md
+++ b/README.md
@@ -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