panduwana commited on
Commit
8841302
·
1 Parent(s): 2008638

add readme

Browse files
Files changed (1) hide show
  1. README.md +44 -10
README.md CHANGED
@@ -1,10 +1,44 @@
1
- ---
2
- title: Api Ta
3
- emoji: 🏢
4
- colorFrom: pink
5
- colorTo: red
6
- sdk: docker
7
- pinned: false
8
- ---
9
-
10
- Check out the configuration reference at https://huggingface.co/docs/hub/spaces-config-reference
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Playground
2
+
3
+ - https://mrfirdauss-api-ta.hf.space/docs
4
+ - Resume examples: https://resumecat.com/resume-examples
5
+ - Demo video:
6
+
7
+ [![Demo video](https://i9.ytimg.com/vi_webp/toO0OwvWPNc/mq2.webp?sqp=CPDogr0G-oaymwEmCMACELQB8quKqQMa8AEB-AHUBoAC4AOKAgwIABABGGUgZShlMA8=&rs=AOn4CLAdmZZGDuoicf6-KCeHKxB1tzspuA)](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
+