Export Your Data
Your code is always yours — it lives on GitHub. Database, files, and analytics each have their own export path.
Proyecta does not lock your data inside the platform. Code, data, files, and analytics each have an export path you can use without asking for permission.
Code (always exportable, always yours)
Section titled “Code (always exportable, always yours)”Every change the AI makes is committed to a GitHub repository under your account. There is no Proyecta-side container around your code — it’s a regular git repository, with regular commits and branches.
To get your code out:
- Open your repo on github.com
- Click Code → Download ZIP for a snapshot, or
- Clone the full history:
git clone <your-repo-url>
You can also push to additional remotes (GitLab, Bitbucket, your own self-hosted git server). The AI commits to whatever branch is currently checked out — you control everything else.
Database
Section titled “Database”For the built-in database:
- Dashboard > Data — open Dashboard > Data in the builder to browse tables and records.
- Export — use the More → Export option to export your data. Available on Business plan and above.
Database (PostgreSQL / MySQL / MongoDB infrastructure services)
Section titled “Database (PostgreSQL / MySQL / MongoDB infrastructure services)”If you’ve added a relational or document-oriented infrastructure service to your dev machine, use the standard dump tools from the builder’s Terminal:
# PostgreSQLpg_dump -U postgres -d mydb > backup.sql
# MySQLmysqldump -u root mydb > backup.sql
# MongoDBmongodump --db mydb --out ./backupYou can scp or upload the resulting file wherever you need it.
Files & Media
Section titled “Files & Media”For files uploaded to Proyecta Files (the CDN-backed Files API), use proyecta.files.list() from the SDK to enumerate everything, then fetch each url to download. See Files & Media.
Analytics
Section titled “Analytics”Built-in analytics are visible in Dashboard > Analytics today. CSV / JSON export is on the roadmap. In the meantime, you can ask the AI to forward analytics to a third-party provider (Google Analytics, PostHog, Mixpanel) and export from there.
Account-level data (GDPR / right to portability)
Section titled “Account-level data (GDPR / right to portability)”For a full export of your account data — orgs, members, billing history, invoices, audit logs — contact support. A self-service GDPR-style export bundle is on the roadmap.
Coming soon
Section titled “Coming soon”- One-click project archive — code, database, files, secrets metadata, and analytics in a single downloadable bundle
- Self-service GDPR export for account-level data
- Scheduled backup exports to S3, R2, or any object store
- CSV/JSON analytics export from the Analytics panel