You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: Cargo.toml
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -5,7 +5,7 @@ edition = "2021"
5
5
description = "Build data user interfaces entirely in SQL. A web server that takes .sql files and formats the query result using pre-made configurable professional-looking components."
6
6
keywords = ["web", "sql", "framework"]
7
7
license = "MIT"
8
-
homepage = "https://sql.datapage.app/"
8
+
homepage = "https://sql-page.com/"
9
9
repository = "https://github.com/lovasoa/SQLpage"
10
10
documentation = "https://docs.rs/sqlpage"
11
11
include = ["/src", "/README.md", "/build.rs", "/sqlpage", "/index.sql", "/.sqlpage_artefacts"]
Copy file name to clipboardExpand all lines: README.md
+4-4Lines changed: 4 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -4,7 +4,7 @@ SQLpage
4
4
5
5
[](./docs/sqlpage.mp4)
6
6
7
-
[SQLpage](https://sql.datapage.app) is an **SQL**-only webapp builder.
7
+
[SQLpage](https://sql-page.com) is an **SQL**-only webapp builder.
8
8
It is meant for data scientists, analysts, and business intelligence teams
9
9
to build powerful data-centric applications quickly,
10
10
without worrying about any of the traditional web programming languages and concepts.
@@ -132,7 +132,7 @@ select
132
132
133
133
## Get started
134
134
135
-
[Read the official *get started* guide on SQLPage's website](https://sql.datapage.app/get_started.sql).
135
+
[Read the official *get started* guide on SQLPage's website](https://sql-page.com/get_started.sql).
136
136
137
137
### Using executables
138
138
@@ -198,7 +198,7 @@ to the user's browser.
198
198
- [Tiny splitwise clone](./examples/splitwise): a shared expense tracker app
199
199
- [Corporate Conundrum](./examples/corporate-conundrum/): a board game implemented in SQL
200
200
- [Master-Detail Forms](./examples/master-detail-forms/): shows how to implement a simple set of forms to insert data into database tables that have a one-to-many relationship.
201
-
- [SQLPage's own official website and documentation](./examples/official-site/): The SQL source code for the project's official site, https://sql.datapage.app
201
+
- [SQLPage's own official website and documentation](./examples/official-site/): The SQL source code for the project's official site, https://sql-page.com
202
202
- [Image gallery](./examples/image%20gallery%20with%20user%20uploads/): An image gallery where users can log in and upload images. Illustrates the implementation of a user authentication system using session cookies, and the handling of file uploads.
203
203
- [User Management](./examples/user-authentication/): An authentication demo with user registration, log in, log out, and confidential pages. Uses PostgreSQL.
204
204
- [Making a JSON API and integrating React components in the frontend](./examples/using%20react%20and%20other%20custom%20scripts%20and%20styles/): Shows how to integrate a react component in a SQLPage website, and how to easily build a REST API with SQLPage.
@@ -299,7 +299,7 @@ FrontPage was a visual static website builder popular in the late '90s. I hadn't
299
299
> **I like CSS. I want to design websites, not write SQL.**
300
300
301
301
If you want to write your own HTML and CSS,
302
-
you can [create custom components](https://sql.datapage.app/custom_components.sql)
302
+
you can [create custom components](https://sql-page.com/custom_components.sql)
303
303
by adding a [`.handlebars`](https://handlebarsjs.com/guide/) file in `sqlpage/templates` and writing your HTML and CSS there. ([Example](./sqlpage/templates/alert.handlebars)).
304
304
You can also use the `html` component to write raw HTML, or the `shell` component to include custom scripts and styles.
Copy file name to clipboardExpand all lines: configuration.md
+5-5Lines changed: 5 additions & 5 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -21,7 +21,7 @@ Here are the available configuration options and their default values:
21
21
|`sqlite_extensions`|| An array of SQLite extensions to load, such as `mod_spatialite`|
22
22
|`web_root`|`.`| The root directory of the web server, where the `index.sql` file is located. |
23
23
|`site_prefix`|`/`| Base path of the site. If you want to host SQLPage at `https://example.com/sqlpage/`, set this to `/sqlpage/`. When using a reverse proxy, this allows hosting SQLPage together with other applications on the same subdomain. |
24
-
|`configuration_directory`|`./sqlpage/`| The directory where the `sqlpage.json` file is located. This is used to find the path to [`templates/`](https://sql.datapage.app/custom_components.sql), [`migrations/`](https://sql.datapage.app/your-first-sql-website/migrations.sql), and `on_connect.sql`. Obviously, this configuration parameter can be set only through environment variables, not through the `sqlpage.json` file itself in order to find the `sqlpage.json` file. Be careful not to use a path that is accessible from the public WEB_ROOT |
24
+
|`configuration_directory`|`./sqlpage/`| The directory where the `sqlpage.json` file is located. This is used to find the path to [`templates/`](https://sql-page.com/custom_components.sql), [`migrations/`](https://sql-page.com/your-first-sql-website/migrations.sql), and `on_connect.sql`. Obviously, this configuration parameter can be set only through environment variables, not through the `sqlpage.json` file itself in order to find the `sqlpage.json` file. Be careful not to use a path that is accessible from the public WEB_ROOT |
25
25
|`allow_exec`| false | Allow usage of the `sqlpage.exec` function. Do this only if all users with write access to sqlpage query files and to the optional `sqlpage_files` table on the database are trusted. |
26
26
|`max_uploaded_file_size`| 5242880 | Maximum size of forms and uploaded files in bytes. Defaults to 5 MiB. |
27
27
|`max_pending_rows`| 256 | Maximum number of rendered rows that can be queued up in memory when a client is slow to receive them. |
@@ -104,7 +104,7 @@ For instance, if you want to create a custom `my_component` component, that disp
104
104
</ul>
105
105
```
106
106
107
-
[See the full custom component documentation](https://sql.datapage.app/custom_components.sql).
107
+
[See the full custom component documentation](https://sql-page.com/custom_components.sql).
Copy file name to clipboardExpand all lines: docs/introducing-sqlpage-to-the-postgres-community.md
+3-3Lines changed: 3 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -2,7 +2,7 @@
2
2
3
3
SQLPage is an open-source tool that empowers database people to quickly build beautiful dynamic web applications *entirely in SQL*.
4
4
5
-
Designed to seamlessly integrate with PostgreSQL, SQLPage enables data practitioners to leverage their SQL skills to create robust, data-centric web apps without the need for traditional web programming languages, thanks to its [rich library of built-in web components](https://sql.datapage.app/documentation.sql) that can be invoked directly from basic SQL queries.
5
+
Designed to seamlessly integrate with PostgreSQL, SQLPage enables data practitioners to leverage their SQL skills to create robust, data-centric web apps without the need for traditional web programming languages, thanks to its [rich library of built-in web components](https://sql-page.com/documentation.sql) that can be invoked directly from basic SQL queries.
6
6
7
7
It lets you create complex dynamic webapps for data analysis, visualization, data ingestion, internal tooling, administration panels, prototyping, and more just by writing simple standard `.sql` files.
8
8
@@ -29,7 +29,7 @@ SQLPage opens the world of easy web application development to database speciali
29
29
30
30
## Example
31
31
32
-
Here are the exact two SQL queries that builds the list of components of the documentation page on [SQLPage's official website](https://sql.datapage.app)
32
+
Here are the exact two SQL queries that builds the list of components of the documentation page on [SQLPage's official website](https://sql-page.com)
33
33
34
34
```
35
35
SELECT 'list' AS component, 'components' AS title;
@@ -48,7 +48,7 @@ order by name;
48
48
49
49
## Get Started
50
50
51
-
To explore the possibilities and limitations of SQLPage, visit [the official website](https://sql.datapage.app) and read the [SQL website building tutorial](https://sql.datapage.app/get%20started.sql). Join the [SQLPage community](https://github.com/lovasoa/SQLpage/discussions) to discuss your PostgreSQL-powered web applications.
51
+
To explore the possibilities and limitations of SQLPage, visit [the official website](https://sql-page.com) and read the [SQL website building tutorial](https://sql-page.com/get%20started.sql). Join the [SQLPage community](https://github.com/lovasoa/SQLpage/discussions) to discuss your PostgreSQL-powered web applications.
Copy file name to clipboardExpand all lines: docs/sqlpage for sqlite.md
+3-3Lines changed: 3 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -6,9 +6,9 @@ I'm not sure whether announcements like this are allowed here; feel free to dele
6
6
7
7
I wanted to introduce a cool piece of open source software I have been working on for a long time, and that is now ready for more general use.
8
8
9
-
It's called [SQLPage](https://sql.datapage.app), and it lets you build a full web application on top of your SQLite database using nothing more than standard SQL queries.
9
+
It's called [SQLPage](https://sql-page.com), and it lets you build a full web application on top of your SQLite database using nothing more than standard SQL queries.
10
10
11
-
# SQLPage: [build a website in SQL](https://sql.datapage.app)
11
+
# SQLPage: [build a website in SQL](https://sql-page.com)
0 commit comments