File tree Expand file tree Collapse file tree 6 files changed +34
-3
lines changed
Expand file tree Collapse file tree 6 files changed +34
-3
lines changed Original file line number Diff line number Diff line change @@ -50,3 +50,4 @@ Dockerfile.local
5050
5151# Diretório de migrações de banco de dados (opcional, se preferir não rastreá-las)
5252# migrations/
53+ .vercel
Original file line number Diff line number Diff line change 2020# SECURITY WARNING: don't run with debug turned on in production!
2121DEBUG = True
2222
23- ALLOWED_HOSTS = ['127.0.0.1' , 'labens.dct.ufrn.br ' ]
23+ ALLOWED_HOSTS = ['127.0.0.1' , 'academic-dev-flow.vercel.app ' ]
2424DOMAINS_WHITELIST = ALLOWED_HOSTS
2525
2626CSRF_COOKIE_SECURE = config ('CSRF_COOKIE_SECURE' , default = False , cast = bool )
Original file line number Diff line number Diff line change 5656 path ('academicflow-api/' , RedirectView .as_view (url = '/academicflow-api/admin/' )),
5757]
5858
59+
60+
5961
6062
Original file line number Diff line number Diff line change 1414os .environ .setdefault ('DJANGO_SETTINGS_MODULE' , 'academic_dev_flow.settings' )
1515
1616application = get_wsgi_application ()
17+
18+ app = application
Original file line number Diff line number Diff line change @@ -2,6 +2,8 @@ asgiref==3.7.2
22certifi == 2024.2.2
33cffi == 1.16.0
44charset-normalizer == 3.3.2
5+ coreapi == 2.3.3
6+ coreschema == 0.0.4
57coverage == 7.6.1
68cryptography == 42.0.5
79Deprecated == 1.2.14
@@ -11,20 +13,31 @@ django-jazzmin==2.6.0
1113django-markdown == 0.8.4
1214django-markdownx == 3.0.1
1315djangorestframework == 3.14.0
16+ drf-yasg == 1.21.8
1417idna == 3.6
18+ inflection == 0.5.1
19+ itypes == 1.2.0
20+ Jinja2 == 3.1.5
1521Markdown == 3.5.2
22+ MarkupSafe == 3.0.2
23+ openapi-codec == 1.3.2
24+ packaging == 24.2
1625pillow == 10.2.0
17- psycopg2 == 2.9.9
26+ psycopg == 3.2.2
27+ psycopg2-binary == 2.9.9
1828pycparser == 2.21
1929PyGithub == 2.3.0
2030PyJWT == 2.8.0
2131PyNaCl == 1.5.0
2232python-decouple == 3.8
2333python-dotenv == 1.0.1
2434pytz == 2024.1
35+ PyYAML == 6.0.2
2536requests == 2.31.0
37+ simplejson == 3.19.3
2638sqlparse == 0.4.4
2739typing_extensions == 4.10.0
2840tzdata == 2023.4
41+ uritemplate == 4.1.1
2942urllib3 == 2.2.1
30- wrapt == 1.16.0
43+ wrapt == 1.16.0
Original file line number Diff line number Diff line change 1+ {
2+ "builds" : [{
3+ "src" : " academic_dev_flow/wsgi.py" ,
4+ "use" : " @vercel/python" ,
5+ "config" : { "maxLambdaSize" : " 15mb" , "runtime" : " python3.12" }
6+ }],
7+ "routes" : [
8+ {
9+ "src" : " /(.*)" ,
10+ "dest" : " academic_dev_flow/wsgi.py"
11+ }
12+ ]
13+ }
You can’t perform that action at this time.
0 commit comments