add readme
Browse files
README.md
CHANGED
|
@@ -1,10 +1,44 @@
|
|
| 1 |
-
|
| 2 |
-
|
| 3 |
-
|
| 4 |
-
|
| 5 |
-
|
| 6 |
-
|
| 7 |
-
|
| 8 |
-
|
| 9 |
-
|
| 10 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
# Playground
|
| 2 |
+
|
| 3 |
+
- https://mrfirdauss-api-ta.hf.space/docs
|
| 4 |
+
- Resume examples: https://resumecat.com/resume-examples
|
| 5 |
+
- Demo video:
|
| 6 |
+
|
| 7 |
+
[](https://www.youtube.com/watch?v=toO0OwvWPNc)
|
| 8 |
+
|
| 9 |
+
|
| 10 |
+
# Running locally
|
| 11 |
+
|
| 12 |
+
Follow the instructions at:
|
| 13 |
+
|
| 14 |
+
https://huggingface.co/spaces/mrfirdauss/api-ta?docker=true
|
| 15 |
+
|
| 16 |
+
|
| 17 |
+
# Development setup
|
| 18 |
+
|
| 19 |
+
```
|
| 20 |
+
git clone [email protected]:rekrutmen_plus/modul-extractor.git
|
| 21 |
+
```
|
| 22 |
+
Then:
|
| 23 |
+
|
| 24 |
+
## Option 1: With Docker
|
| 25 |
+
```
|
| 26 |
+
cd modul-extractor
|
| 27 |
+
docker build -t modul-extractor .
|
| 28 |
+
docker run -p 7860:7860 modul-extractor
|
| 29 |
+
```
|
| 30 |
+
Then open: `http://localhost:7860/docs`
|
| 31 |
+
|
| 32 |
+
## Option 2: Without Docker
|
| 33 |
+
- [Install git-lfs](https://github.com/git-lfs/git-lfs?tab=readme-ov-file#installing), then:
|
| 34 |
+
|
| 35 |
+
```
|
| 36 |
+
cd modul-extractor
|
| 37 |
+
git lfs install
|
| 38 |
+
pip install -r requirements.txt
|
| 39 |
+
uvicorn app:app --host 0.0.0.0 --port 7860
|
| 40 |
+
```
|
| 41 |
+
Then open: `http://localhost:7860/docs`
|
| 42 |
+
|
| 43 |
+
|
| 44 |
+
|