> ## Documentation Index
> Fetch the complete documentation index at: https://docs.seemodo.ai/llms.txt
> Use this file to discover all available pages before exploring further.

# Seemodo Cloud

> Built-in database, authentication, storage, and secrets management for your applications — activate with one click.

# Seemodo Cloud

Seemodo Cloud gives your application a complete backend — database, authentication, file storage, and secrets — without any configuration. Activate it with one click and the AI can immediately use it in your app.

## What Seemodo Cloud provides

| Service            | What it does                                           |
| ------------------ | ------------------------------------------------------ |
| **Database**       | SQL database with tables, rows, and full query support |
| **Authentication** | User signup, login, password reset, session management |
| **Storage**        | File and image uploads with buckets                    |
| **Secrets**        | Environment variables for API keys and sensitive data  |

## Activating Seemodo Cloud

<Steps>
  <Step title="Generate a HiFi screen or open a project">
    You need an active sandbox first.
  </Step>

  <Step title="Click the Cloud icon">
    In the Visual Designer: the cloud button next to the terminal icon.
    In the Project Editor: available through settings.
  </Step>

  <Step title="Choose activation mode">
    * **Create new** — Seemodo provisions a fresh database project
    * **Link existing** — Connect an existing database project by reference ID
  </Step>

  <Step title="Done">
    Seemodo Cloud is active. The AI can now use the database, auth, and storage in your app.
  </Step>
</Steps>

## Database Manager

Once activated, the Seemodo Cloud modal shows a full database management interface:

### Tables

* View all tables in your database
* See column definitions, types, and constraints
* Browse rows with pagination
* Create, edit, and delete rows inline

### SQL Editor

Run raw SQL queries against your database:

```sql theme={null}
SELECT * FROM users WHERE created_at > '2024-01-01';
```

### Schema management

The AI can create tables and modify your schema through chat. Just ask:

* "Create a products table with name, price, description, and image\_url columns"
* "Add a created\_at timestamp to the orders table"
* "Set up a many-to-many relationship between users and projects"

## Authentication

Seemodo Cloud provides built-in user management:

* **User list** — View all registered users with email, creation date, and last sign-in
* **User details** — See individual user metadata
* **Auth integration** — The AI sets up sign-up/login flows in your app automatically

When you ask the AI to "add user authentication", it uses Seemodo Cloud's auth system.

## Storage

Cloud storage for file uploads:

* **Buckets** — Organize files in named buckets (e.g., "avatars", "documents")
* **Upload/Download** — Manage files through the interface
* **Public URLs** — Get shareable links for uploaded files

Ask the AI: "Add profile image upload that saves to cloud storage"

## Secrets

Store sensitive values securely:

* API keys
* Third-party tokens
* Configuration values

Secrets are injected as environment variables accessible by your app code.

## Using Seemodo Cloud in your app

Once activated, simply tell the AI what you need:

* "Save form submissions to the database"
* "Add user login with email and password"
* "Let users upload profile pictures"
* "Store the API key in secrets and use it in my fetch calls"

The AI handles all the integration code automatically.

## Next steps

<CardGroup cols={2}>
  <Card title="Deployment" icon="globe" href="/en/seemodo/deployment">
    Deploy your app with the cloud backend
  </Card>

  <Card title="Projects" icon="folder" href="/en/seemodo/projects">
    Manage your projects and settings
  </Card>
</CardGroup>
