app_name = "hello"Let's create a new app called {app_name}
mkdir {app_name}
cd {app_name}
uv init
uv add reflex
uv run reflex initThis will create a directory structure like this:
{app_name}
βββ .venv
βββ .web
βββ assets
βββ {app_name}
β βββ __init__.py
β βββ {app_name}.py
βββ .gitignore
βββ .python-version
βββ pyproject.toml
βββ rxconfig.py
βββ uv.lockuv init may also create helper files such as README.md, main.py, and Git metadata. The tree above focuses on the main files you will interact with while building a Reflex app.
Let's go over each of these directories and files.
uv add reflex creates a local virtual environment in .venv by default. This keeps your app dependencies isolated from the rest of your system Python.
This is where the compiled Javascript files will be stored. You will never need to touch this directory, but it can be useful for debugging.
Each Reflex page will compile to a corresponding .js file in the .web/pages directory.
If Reflex installs frontend dependencies with Bun, the canonical bun.lock lives in your project root and should be committed to version control. Reflex mirrors it into .web when it needs to run the package manager.
The assets directory is where you can store any static assets you want to be publicly available. This includes images, fonts, and other files.
For example, if you save an image to assets/image.png you can display it from your app like this:
rx.image(src="https://web.reflex-assets.dev/other/image.png")Initializing your project creates a directory with the same name as your app. This is where you will write your app's logic.
Reflex generates a default app within the {app_name}/{app_name}.py file. You can modify this file to customize your app.
pyproject.toml defines your Python project metadata and dependencies. uv add reflex records the Reflex dependency there before you initialize the app.
uv.lock stores the fully resolved dependency set for reproducible installs. Commit it to version control so everyone working on the app gets the same Python package versions.
The rxconfig.py file can be used to configure your app. By default it looks something like this:
import reflex as rx
config = rx.Config(
app_name="{app_name}",
)We will discuss project structure and configuration in more detail in the advanced project structure documentation.