File tree Expand file tree Collapse file tree
docs/backend/backend_python Expand file tree Collapse file tree Original file line number Diff line number Diff line change 22
33The entry point for the backend is in ` main.py ` , which initializes the databases and handles the startup and shutdown for the FastAPI server.
44
5- The code for the application mainly lies in the ` app/ ` directory the heirarchy of which looks like this:
5+ The code for the application mainly lies in the ` app/ ` directory the hierarchy of which looks like this:
66
77``` bash
88.
@@ -21,15 +21,15 @@ We will discuss what each of these directories do and the relevant files they co
2121
2222## config
2323
24- Related to variables used accross the application.
24+ Related to variables used across the application.
2525
2626| Name | Description |
2727| ------------- | ------------------------------------------------------------------------------------------------------------------- |
2828| ` settings.py ` | Contains configuration files for the application, mainly paths and parameters which are used across the application |
2929
3030## database
3131
32- This directory contains files related to database operations, including table creation, query handeling and some helper functions on the tables.
32+ This directory contains files related to database operations, including table creation, query handling and some helper functions on the tables.
3333These files are the places where most of the SQL queries are written. By default, on startup this directory is where the databases (` .db ` files) is
3434created.
3535
You can’t perform that action at this time.
0 commit comments