Skip to content

Commit 633e632

Browse files
committed
add sqlite intro
1 parent 0b0c956 commit 633e632

File tree

2 files changed

+45
-0
lines changed

2 files changed

+45
-0
lines changed

docs/code-screenshots.png

63.3 KB
Loading

docs/sqlpage for sqlite.md

+45
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,45 @@
1+
# 📢 Announcing SQLPage: Build Dynamic SQLite Applications in SQL
2+
3+
Hello everyone !
4+
5+
I'm not sure whether announcements like this are allowed here; feel free to delete this post if they are not.
6+
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+
9+
It's called [SQLPage](https://sql.ophir.dev), and it lets you build a full web application on top of your SQLite database using nothing more than standard SQL queries.
10+
11+
# SQLPage: [build a website in SQL](https://sql.ophir.dev)
12+
13+
[![code-screenshots](https://github.com/lovasoa/SQLpage/assets/552629/03ed65bc-ecb1-4c01-990e-d6ab97be39c0)](https://github.com/lovasoa/SQLPage)
14+
15+
16+
## ❓ What is it ?
17+
18+
It is a small opensource web server distributed as a single binary that executes your `.sql` files, and renders the results using nice web components (tables, lists, forms, plots, ...).
19+
20+
Of course, if you are making a huge application with a complex business logic, SQLPage is not for you. But if you have a SQLite database lying around that you would want to share access to through a nice UI without spending too much time on it, you should try it.
21+
22+
23+
## Features
24+
25+
- **🗄️ SQL-only**: Create full web applications with a sleek frontend without touching HTML, CSS, or JavaScript.
26+
- **📝 Full SQL Support**: Auto-generated Web UI. Write only raw SQL queries.
27+
- **🔄 Integrated**: Supports any existing SQLite database, including using SQLlite extensions, leveraging its data using a standard .sql file.
28+
- **🌐 Web Standards Support**: Read and write HTTP cookies, manage user authentication, handle form submissions, and URL parameters.
29+
- **🚀🔒 Fast And Secure**: Written in Rust, ensuring no memory corruption, SQL injections, or XSS vulnerabilities.
30+
31+
## Use Cases
32+
33+
Some cool things people are building with SQLPage:
34+
35+
- 📊 Internal Dashboards: Empower teams with data-driven insights.
36+
- 📈 Small Business Intelligence Apps: Build powerful applications for analysis and exploration.
37+
- 🗂️ Admin Interfaces: Manage and interact with SQLite data effectively.
38+
- 🎮 A Game: Rapidly validate and iterate on the idea.
39+
- 📚 Knowledge Management Tool: Replace an Excel file with a real database quickly
40+
41+
## Open-Source
42+
43+
- [Official project page](https://sql.ophir.dev)
44+
- [Source Code on Github](https://github.com/lovasoa/SQLPage)
45+
- [Examples](https://github.com/lovasoa/SQLpage/tree/main/examples)

0 commit comments

Comments
 (0)