Skip to content

Commit 432519e

Browse files
Merge pull request #104 from MervinPraison/develop
Fixing bugs in .praisonignore and respecting .gitignore
2 parents 500895f + 846e92c commit 432519e

File tree

12 files changed

+1792
-262
lines changed

12 files changed

+1792
-262
lines changed

.gitignore

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,10 @@ crewai
33
.cache
44
__pycache__
55
chroma.sqlite3
6-
test/
7-
dist/
6+
test
7+
dist
88
.env
9-
assets/*
9+
assets
1010
.idea
1111
.DS_Store
1212
.pytest_cache

.praisonignore

Lines changed: 2 additions & 73 deletions
Original file line numberDiff line numberDiff line change
@@ -1,74 +1,3 @@
1-
.*
2-
*.pyc
3-
pycache
4-
.git
5-
.gitignore
6-
.vscode
7-
.idea
8-
.DS_Store
9-
.lock
10-
.pyc
11-
.env
12-
docs
13-
tests
14-
test
15-
tmp
16-
temp
17-
.txt
18-
.md
19-
.json
20-
.csv
21-
.tsv
22-
public
23-
.sql
24-
.sqlite
25-
.db
26-
.db3
27-
.sqlite3
28-
.log
29-
.zip
30-
.gz
31-
.tar
32-
.rar
33-
.7z
34-
.pdf
35-
.jpg
36-
.jpeg
37-
.png
38-
.gif
39-
.svg
401
cookbooks
41-
assets
42-
pycache
43-
dist
44-
build
45-
node_modules
46-
venv
47-
crewAI
48-
.vscode
49-
.cache
50-
*.__pycache__
51-
__pycache__
52-
*chroma.sqlite3
53-
test/
54-
dist/
55-
.env
56-
assets/*
57-
.idea
58-
.DS_Store
59-
.pytest_cache
60-
praisonAI.egg-info
61-
test.yaml
62-
db
63-
praisonai_prompt.txt
64-
watch.sh
65-
docs.sh
66-
other
67-
output
68-
*.chainlit
69-
.files
70-
site
71-
flagged
72-
*public
73-
threads.db
74-
trained_agents_data.pkl
2+
docs
3+
tests

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
FROM python:3.11-slim
22
WORKDIR /app
33
COPY . .
4-
RUN pip install flask praisonai==0.0.52 gunicorn markdown
4+
RUN pip install flask praisonai==0.0.53 gunicorn markdown
55
EXPOSE 8080
66
CMD ["gunicorn", "-b", "0.0.0.0:8080", "api:app"]

docs/api/praisonai/deploy.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -110,7 +110,7 @@ <h2 id="raises">Raises</h2>
110110
file.write(&#34;FROM python:3.11-slim\n&#34;)
111111
file.write(&#34;WORKDIR /app\n&#34;)
112112
file.write(&#34;COPY . .\n&#34;)
113-
file.write(&#34;RUN pip install flask praisonai==0.0.52 gunicorn markdown\n&#34;)
113+
file.write(&#34;RUN pip install flask praisonai==0.0.53 gunicorn markdown\n&#34;)
114114
file.write(&#34;EXPOSE 8080\n&#34;)
115115
file.write(&#39;CMD [&#34;gunicorn&#34;, &#34;-b&#34;, &#34;0.0.0.0:8080&#34;, &#34;api:app&#34;]\n&#39;)
116116

0 commit comments

Comments
 (0)