mirror of
https://github.com/Steffo99/sophon.git
synced 2024-12-22 14:54:22 +00:00
Stefano Pigozzi
ba53064ce2
* ✨ Create Dockerfile for the backend * 🔧 Limit the allowed slug values * ✨ Create docker image for the proxy * ✨ Add serve script (and serve dependency) * ✨ Add .dockerignore symlinks to .gitignore * ✨ Create docker image for the frontend * 🔧 Proxy the frontend * 🔧 Configure the proxy.dbm directory * 🚧 WIP * 💥 Improve settings handling * 💥 Prepare backend for docker deployment * 🔧 Reserve `static` notebook slug * ✨ Make static work * 🐛 Set a default value for reduce * 💥 Things * 💥 Everything works!
27 lines
630 B
TOML
27 lines
630 B
TOML
[tool.poetry]
|
|
name = "sophon"
|
|
version = "0.1.0"
|
|
description = "Django project for dataset collection"
|
|
authors = ["Stefano Pigozzi <256895@studenti.unimore.it>"]
|
|
|
|
[tool.poetry.dependencies]
|
|
python = "^3.9"
|
|
Django = "^3.1.7"
|
|
psycopg2 = "^2.8.6"
|
|
djangorestframework = "^3.12.4"
|
|
Markdown = "^3.3.4"
|
|
django-filter = "^2.4.0"
|
|
pydantic = "~1.7.3"
|
|
deprecation = "^2.1.0"
|
|
docker = "^5.0.2"
|
|
django-cors-headers = "^3.8.0"
|
|
uvicorn = "^0.15.0"
|
|
gunicorn = "^20.1.0"
|
|
coloredlogs = "^15.0.1"
|
|
lazy-object-proxy = "^1.6.0"
|
|
|
|
[tool.poetry.dev-dependencies]
|
|
|
|
[build-system]
|
|
requires = ["poetry-core>=1.0.0"]
|
|
build-backend = "poetry.core.masonry.api"
|