| title | Quickstart |
|---|---|
| description | Welcome to Turso Cloud! Get started in minutes. |
In this quickstart you will learn how to:
- Install the Turso CLI
- Signup to Turso Cloud
- Create your first Turso Cloud database
- Connect to Database Shell
We'll be using the Turso CLI throughout this quickstart to manage databases and connect to the database shell.
brew install tursodatabase/tap/tursocurl -sSfL https://get.tur.so/install.sh | bashcurl -sSfL https://get.tur.so/install.sh | bashThe next command will open your browser to sign up:
turso auth signupturso auth loginTurso Cloud hosts two SQLite-compatible engines: Turso, with concurrent writes and multi-user access built in, and libSQL. Create your first Turso database with the name my-db:
turso db create my-db --tursodbTo create a libSQL database instead, omit the --tursodb flag:
turso db create my-dbYou can inspect your new database using the following command:
turso db show my-dbCongratulations, you created a database! Now connect to it with the shell command:
turso db shell my-dbReplace my-db with the name of your database if you named it differently.
CREATE TABLE users (
ID INTEGER PRIMARY KEY AUTOINCREMENT,
name TEXT
);Then insert a row into the users table:
INSERT INTO users (name) VALUES ('Iku');Finally, query for all `users`:
SELECT * FROM users;When you're ready to move onto the next step, you'll want to to quit the shell:
.quitYou're now ready to connect your application to your database. Pick from one of the SDKs below to continue: