1. Install Davia

First, install Davia using pip:

pip install davia

2. Create Your First App

Create a new Python file, for example welcome.py, and add the following code:

from davia import Davia, run_server

davia_app = Davia()

@davia_app.task
def welcome_message() -> str:
    return "Welcome to Davia!"

if __name__ == "__main__":
    run_server(davia_app)

3. Run Your App

Run your Python file:

python welcome.py

This will start a local server and automatically open your browser to the Davia dashboard at:

https://dev.davia.ai/dashboard?entrypoint=http://127.0.0.1:2025

4. Design Your Interface

Now you can use the visual editor to design your interface with a simple prompt:

Clean dashboard with welcome button that displays blue message when clicked

That’s it! Davia will generate your frontend instantly.