This commit is contained in:
Benjamin Toby 2025-07-16 11:30:29 +01:00
parent bc14b08438
commit ee8f6f04d9
5 changed files with 141 additions and 40 deletions

View File

@ -0,0 +1,40 @@
---
title: Create an account | Datasquirel docs
description: Create an Account with Datasquirel
page_title: Create an Account
page_description: Get started with a new datasqurel account
---
## Datasquirel.com
Creating an account on datasquirel.com is simple. Just navigate to the [account page](/signup) and login with Google or enter your account details to create an account.
<DocsImg
alt="Create New Account"
srcLight="/images/screenshots/create-account-screen-light.webp"
srcDark="/images/screenshots/create-account-screen-dark.webp"
/>
## Self Hosted
Creating an account for self hosted instances can only be done by the `super admin` user. This user is created during the initial setup of the instance. And every other user is created by the `super admin` user.
### Creating The Super Admin User
When a self hosted instance is first created, you're directed to the `super admin` user creation page. Fill in the required fields to create the `super admin` user. This user has all privileges and can create other users. This user is created only once, and cannot be deleted. Learn more about [`super admin` users](/gui-reference/super-admin-user).
<DocsImg
alt="Create Super Admin User"
srcLight="/images/screenshots/su-user-signup-light.webp"
srcDark="/images/screenshots/su-user-signup-dark.webp"
/>
### Creating Other Users
To create other users, navigate to the Super Admin [users page](/admin/su/users) and click on the `Add User` button. Fill in the required fields to create the user.
<DocsImg
alt="Create Other Admin Users"
srcLight="/images/screenshots/su-create-user-light.webp"
srcDark="/images/screenshots/su-create-user-dark.webp"
/>

View File

@ -1,43 +1,14 @@
--- ---
title: Getting Started | GUI Reference | Datasquirel docs title: Getting Started | Datasquirel docs
description: Get started with Datasquirel description: Get started with Datasquirel
page_title: Create Table Fields page_title: Create Table Fields
page_description: Learn how to create fields/columns in your tables page_description: Jump in and start up your project
--- ---
import Border from "@/src/components/twui/elements/Border"; ## Get Started With Datasquirel
import DocsImg from "@/src/components/twui/layout/DocsImg";
## Datasquirel.com <DocsCard
title="Create Account"
Creating an account on datasquirel.com is simple. Just navigate to the [account page](/signup) and login with Google or enter your account details to create an account. description="Learn how to Create a datasquirel account"
href="/docs/getting-started/create-account"
<DocsImg
alt="Create New Account"
srcLight="/images/screenshots/create-account-screen-light.webp"
srcDark="/images/screenshots/create-account-screen-dark.webp"
/>
## Self Hosted
Creating an account for self hosted instances can only be done by the `super admin` user. This user is created during the initial setup of the instance. And every other user is created by the `super admin` user.
### Creating The Super Admin User
When a self hosted instance is first created, you're directed to the `super admin` user creation page. Fill in the required fields to create the `super admin` user. This user has all privileges and can create other users. This user is created only once, and cannot be deleted. Learn more about [`super admin` users](/gui-reference/super-admin-user).
<DocsImg
alt="Create Super Admin User"
srcLight="/images/screenshots/su-user-signup-light.webp"
srcDark="/images/screenshots/su-user-signup-dark.webp"
/>
### Creating Other Users
To create other users, navigate to the Super Admin [users page](/admin/su/users) and click on the `Add User` button. Fill in the required fields to create the user.
<DocsImg
alt="Create Other Admin Users"
srcLight="/images/screenshots/su-create-user-light.webp"
srcDark="/images/screenshots/su-create-user-dark.webp"
/> />

View File

@ -0,0 +1,92 @@
---
title: Quick Start | Datasquirel docs
description: Start saving and retrieving data now.
page_title: Quick Start
page_description: Start saving and retrieving data now. Set up and start deploying in minutes.
---
## Starting up your Datasquirel instance
To get started with datasquirel you need an account online. The datasquirel npm module will hit this account via out API integration using your API credentials. Without an account, you cannout query any data on our API. Follow these steps to create an account:
### 1\. Create Account
Create a free account [here](/create-account)
### 2\. Create Database
Navigate to your [Dashboard](/admin) or [Databases](/admin/databases) page. Click the `Add Database` button to add a new database.
On the next screen that appears, fill in the form and add a database image if you wish. Click on `Create Database` to add the new database
Creating a new database takes you to the database page. This page allows you to import a pre-existing database using an SQL export file, or create a new table inside the newly-formed database. More operations for your database can be found in the database dropdown on the top left, or the `more` dropdown on the top right.
### 3\. Add a table
Databases consists of Tables: each with fields(or columns) and entries(or rows). Select a database from your database list to access the single database pages. Click on `Add Table` and fill in the new table form.
On each table form you have access to the table fields(or column titles). Each field contains a few options:
- **Field Name**: Name of field(or column title)
- **Data Type**: type of data to be stored on that field: See All Datatypes
- **Required**: Choose whether the field must have a value or not
- **Default Value**: Default value of field in the case no value is entered.
- **More**: The "More" button contains options for encryption and foreign keys.
After these fields are filled, click `Add Field`. Add as much field as you need. These fields serve as column titles for your table.
After creating a table you now have access to the tables list.
### 4\. Add an Entry
Select the newly created Table and on the designated table page click on `Add New Table Entry`
Fill in the required fields and click on "Add Entry". Congrats, you have now created your first datasquirel data entry, you can now access this data from any platform using your api key.
<br />
## Fetching Data
To start fetching data from your datasquirel account, you need to go through 3 steps:
### 1\. Create an API key
Your api key is your gateway to all your data. There are two sets of API keys available for use: `Read Only` API keys, and `Full Access` API keys. They function as their names sound: Read only API keys only read data, Full Access API keys can read, write, delete, update, and also add media to your media storage directory.
To create an API key, follow these steps:
- Login to your admin dashboard and navigate to `API keys` page
- Click on `Add API key` and fill in the form. Give your API key a name and select which the scope you wich to cover with the key (`Read Only` for just reading data, `Full Access` for reading and writing data).
- Once your API key is created, copy the API key by clicking "Copy API key". Keep this key safe and secured.
### 2\. Use your API key to make a request
After creating your API key, then comes the backend section.
First add the datasquirel package via NPM
```bash
npm install @moduletrace/datasquirel
```
Next import the datasquirel module into your project, choose the database you will be querying, add your API key, and then run the query.
```javascript
import datasquirel from "@moduletrace/datasquirel";
datasquirel.api.crud({
database: "social_network",
table: "users",
key: process.env.READ_ONLY_API_KEY,
params: {
action: "get",
query: {
limit: 10,
},
},
});
```
Learn more [here](/docs/api-reference/crud)

View File

@ -2,9 +2,7 @@
title: Self Hosting | Datasquirel docs title: Self Hosting | Datasquirel docs
description: Self Host your datasquirel instance description: Self Host your datasquirel instance
page_title: Self Hosting page_title: Self Hosting
page_description: Host anywhere and manage your SQL database with ease. page_description: Host anywhere and manage your SQL database with ease. Datasquirel is compatible with `MySQL` and `MariaDB` databases.
Datasquirel is compatible with `MySQL` and `MariaDB`
databases.
--- ---
## Prerequisites ## Prerequisites

View File

@ -1,7 +1,7 @@
--- ---
title: Linux Self Hosting | Datasquirel docs title: Linux Self Hosting | Datasquirel docs
description: Host on Linux/Unix machines description: Host on Linux/Unix machines
page_title: Self Hosting on Linux/MacO page_title: Self Hosting on Linux/Unix machines
page_description: Host on Linux/Unix machines page_description: Host on Linux/Unix machines
--- ---