24 lines
553 B
TOML
24 lines
553 B
TOML
[tool.poetry]
|
|
name = "interactive-table"
|
|
version = "0.1.0"
|
|
description = ""
|
|
authors = ["Your Name <you@example.com>"]
|
|
readme = "README.md"
|
|
|
|
[tool.poetry.dependencies]
|
|
python = "^3.10"
|
|
Django = "^5.0.4"
|
|
djangorestframework = "^3.15.1"
|
|
taskipy = "^1.12.2"
|
|
django-cors-headers = "^4.3.1"
|
|
pillow = "^10.3.0"
|
|
|
|
|
|
[build-system]
|
|
requires = ["poetry-core"]
|
|
build-backend = "poetry.core.masonry.api"
|
|
|
|
[tool.taskipy.tasks]
|
|
server = "back/manage.py runserver 0.0.0.0:8000"
|
|
front = "cd front && npm run build && npm run preview"
|
|
front_dev = "cd front && npm run dev" |