Turso/SQLite
Turso is a cloud database provider built on libSQL.
- Global data distribution with low latency access
- Built-in replication and high availability
- Serverless architecture with zero maintenance
libSQL is an open source fork of SQLite that. The Turso team actively maintains and develops both libSQL and Turso.
Supersaas integrates natively with Turso. This guide will walk you through setting up Turso with your Supersaas application.
Checkout to the Turso branch
- First, checkout the
turso
branch of the repository:
git checkout turso
- Add your turso credentials to your
.env
file:
TURSO_DB_URL=libsql://XXXX-XXXX-XXXX.turso.io
TURSO_DB_TOKEN=XXXXXXXX
That's it! The schema, migrations, and database configuration are already set up for you in the turso branch.
Setting up S3 storage
Since we removed NuxtHub, we need to set up S3 storage manually and Supersaas uses Unjs Unstorage as a unified storage layer with the S3 driver for file operations.
The configuration is already handled for you once these environment variables are set.
S3_ACCESS_KEY_ID=XXXXXXXXX
S3_SECRET_ACCESS_KEY=XXXXXXXXXX
S3_BUCKET=your-bucket-name
S3_REGION=your-region
S3_ENDPOINT=your-endpoint
S3_PUBLIC_ENDPOINT=your-public-endpoint
This will work with any S3 compatible storage service.
Package.json Changes
When you switch to the turso branch, the package.json
is automatically updated to remove NuxtHub-related dependencies and include the necessary Postgres packages.
Remember to run pnpm install
after switching branches to update your dependencies.
Next Steps
Once you've set up your database and storage:
- Run your migrations - see migrations
- Start your development server
- Test file uploads to ensure S3 is configured correctly
You're now ready to use Supersaas with Turso and AWS S3!