Skip to content

Commit e25945f

Browse files
committed
Initial commit
Signed-off-by: Aldrin Navarro <[email protected]>
0 parents  commit e25945f

File tree

7 files changed

+1429
-0
lines changed

7 files changed

+1429
-0
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
.idea/

.python-version

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
nextway-erp-api

Pipfile

Lines changed: 57 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,57 @@
1+
[[source]]
2+
url = "https://pypi.org/simple"
3+
verify_ssl = true
4+
name = "pypi"
5+
6+
[packages]
7+
fastapi = "==0.88.0"
8+
uvicorn = {version = "==0.20.0", extras = ["standard"]}
9+
#-r https://raw.githubusercontent.com/odoo/odoo/16.0/requirements.txt
10+
#-e git+https://github.com/odoo/[email protected]#egg=odoo
11+
babel = "*"
12+
chardet = "*"
13+
cryptography = "*"
14+
decorator = "*"
15+
docutils = "*"
16+
ebaysdk = "*"
17+
freezegun = "*"
18+
gevent = "*"
19+
greenlet = "*"
20+
idna = "*"
21+
jinja2 = "*"
22+
libsass = "*"
23+
lxml = "*"
24+
markupsafe = "*"
25+
num2words = "*"
26+
ofxparse = "*"
27+
passlib = "*"
28+
pillow = "*"
29+
polib = "*"
30+
psutil = "*"
31+
psycopg2 = "*"
32+
pydot = "*"
33+
pyopenssl = "*"
34+
pypdf2 = "*"
35+
#pypiwin32 = "*"
36+
pyserial = "*"
37+
python-dateutil = "*"
38+
python-ldap = "*"
39+
python-stdnum = "*"
40+
pytz = "*"
41+
pyusb = "*"
42+
qrcode = "*"
43+
reportlab = "*"
44+
requests = "*"
45+
urllib3 = "*"
46+
vobject = "*"
47+
werkzeug = "*"
48+
xlrd = "*"
49+
xlsxwriter = "*"
50+
xlwt = "*"
51+
zeep = "*"
52+
odoo = {editable = true, ref = "16.0", git = "https://[email protected]/odoo/odoo"}
53+
54+
[dev-packages]
55+
56+
[requires]
57+
python_version = "3.10"

Pipfile.lock

Lines changed: 1309 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

app/__init__.py

Whitespace-only changes.

app/main.py

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
from fastapi import FastAPI
2+
3+
# TODO: Follow https://fastapi.tiangolo.com/tutorial/bigger-applications/
4+
5+
app = FastAPI()
6+
7+
8+
@app.get("/")
9+
async def root():
10+
return {"message": "Hello World"}

odoo-16-requirements.txt

Lines changed: 51 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,51 @@
1+
# Unpinned version of https://github.com/odoo/odoo/blob/16.0/requirements.txt to let Pipfile resolve
2+
Babel
3+
chardet
4+
cryptography
5+
decorator
6+
docutils
7+
ebaysdk
8+
freezegun
9+
freezegun
10+
gevent
11+
gevent
12+
gevent
13+
greenlet
14+
greenlet
15+
greenlet
16+
idna
17+
Jinja2
18+
libsass
19+
lxml
20+
MarkupSafe
21+
num2words
22+
ofxparse
23+
ofxparse
24+
passlib
25+
Pillow
26+
polib
27+
psutil
28+
psycopg2
29+
psycopg2
30+
pydot
31+
pyopenssl
32+
PyPDF2
33+
pypiwin32
34+
pyserial
35+
python-dateutil
36+
python-ldap
37+
python-stdnum
38+
pytz
39+
pyusb
40+
qrcode
41+
reportlab
42+
requests
43+
urllib3
44+
vobject
45+
Werkzeug
46+
Werkzeug
47+
xlrd
48+
xlrd
49+
XlsxWriter
50+
xlwt
51+
zeep

0 commit comments

Comments
 (0)