forked from fractalic-ai/fractalic
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathreplit.json
More file actions
16 lines (16 loc) · 799 Bytes
/
replit.json
File metadata and controls
16 lines (16 loc) · 799 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
{
"name": "Fractalic - AI Programming Platform",
"description": "Program AI in plain language with Fractalic",
"image": "python:3.11",
"port": 3000,
"files": [
{
"name": ".replit",
"content": "run = \"python fractalic.py\"\nmodules = [\"python-3.11\", \"nodejs-18\", \"web\"]\n\n[nix]\nchannel = \"stable-22_11\"\n\n[deployment]\nrun = [\"sh\", \"-c\", \"python fractalic.py\"]\ndeploymentTarget = \"cloudrun\""
},
{
"name": "pyproject.toml",
"content": "[build-system]\nrequires = [\"setuptools\", \"wheel\"]\nbuild-backend = \"setuptools.build_meta\"\n\n[project]\nname = \"fractalic\"\nversion = \"1.0.0\"\ndependencies = [\n \"fastapi\",\n \"uvicorn\",\n \"pydantic\",\n \"PyYAML\",\n \"toml\",\n \"openai\",\n \"anthropic\"\n]"
}
]
}