File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -115,3 +115,10 @@ initial_prompt: ""
115115# override of the corresponding setting in serena_config.yml, see the documentation there.
116116# If null or missing, the value from the global config is used.
117117symbol_info_budget :
118+
119+ # The language backend to use for this project.
120+ # If not set, the global setting from serena_config.yml is used.
121+ # Valid values: LSP, JetBrains
122+ # Note: the backend is fixed at startup. If a project with a different backend
123+ # is activated post-init, an error will be returned.
124+ language_backend :
Original file line number Diff line number Diff line change 1+ """Vercel ASGI entrypoint for the ANIMAtiZE FastAPI app."""
2+
3+ from __future__ import annotations
4+
5+ from src .web .app import app
6+
Original file line number Diff line number Diff line change 1+ {
2+ "version" : 2 ,
3+ "functions" : {
4+ "api/index.py" : {
5+ "maxDuration" : 60 ,
6+ "includeFiles" : [
7+ " src/web/static/**" ,
8+ " configs/**"
9+ ]
10+ }
11+ },
12+ "routes" : [
13+ {
14+ "src" : " /(.*)" ,
15+ "dest" : " api/index.py"
16+ }
17+ ]
18+ }
You can’t perform that action at this time.
0 commit comments