Skip to content

Commit 103ab33

Browse files
ciro-macielclaude
andcommitted
chore: Renomeia SQLite Admin para SQLite em todo o projeto
Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
1 parent 243995f commit 103ab33

File tree

11 files changed

+15
-15
lines changed

11 files changed

+15
-15
lines changed

conductor/product-guidelines.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Product Guidelines - Elysia SQLite Admin
1+
# Product Guidelines - Elysia SQLite
22

33
## Tone and Voice
44
- **Professional & Efficient:** Communication is direct, clear, and prioritizes speed and task completion.

conductor/product.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# Initial Concept
22
Plugin ElysiaJS para gerenciamento de bancos de dados SQLite
33

4-
# Product Guide - Elysia SQLite Admin
4+
# Product Guide - Elysia SQLite
55

66
## Vision
77
A minimalist, web-based SQLite administration plugin for ElysiaJS applications. It empowers developers, system administrators, and technical stakeholders to manage data and inspect schemas without leaving their browser, following a "Content-First" design philosophy.

conductor/tech-stack.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Tech Stack - Elysia SQLite Admin
1+
# Tech Stack - Elysia SQLite
22

33
## Core Technologies
44
- **Runtime:** Bun (fast all-in-one JavaScript runtime)

demo/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# 🗃️ SQLite Admin - Demo
1+
# 🗃️ SQLite - Demo
22

33
Demonstração interativa do plugin de gerenciamento SQLite para ElysiaJS.
44

demo/index.js

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/**
2-
* Demo - SQLite Admin Plugin
2+
* Demo - SQLite Plugin
33
* Exemplo completo de uso do plugin de gerenciamento SQLite
44
*/
55

@@ -142,7 +142,7 @@ const app = new Elysia()
142142
<head>
143143
<meta charset="UTF-8">
144144
<meta name="viewport" content="width=device-width, initial-scale=1.0">
145-
<title>SQLite Admin - Demo</title>
145+
<title>SQLite - Demo</title>
146146
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/@tabler/icons-webfont@latest/tabler-icons.min.css">
147147
<style>
148148
* { margin: 0; padding: 0; box-sizing: border-box; }
@@ -245,7 +245,7 @@ const app = new Elysia()
245245
<div class="container">
246246
<div class="logo">
247247
<i class="ti ti-database"></i>
248-
<h1>SQLite Admin</h1>
248+
<h1>SQLite</h1>
249249
</div>
250250
<p class="description">
251251
Bem-vindo à demonstração do plugin de gerenciamento SQLite para ElysiaJS.
@@ -278,7 +278,7 @@ const app = new Elysia()
278278
);
279279
})
280280

281-
// Plugin SQLite Admin
281+
// Plugin SQLite
282282
.use(sqliteAdmin({ dbPath: DB_PATH, prefix: "/admin" }))
283283

284284
.listen(3000);

demo/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "elysia-sqlite-demo",
33
"version": "1.0.0",
4-
"description": "Demonstração do plugin SQLite Admin para ElysiaJS",
4+
"description": "Demonstração do plugin SQLite para ElysiaJS",
55
"type": "module",
66
"scripts": {
77
"start": "bun run index.js",

src/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -211,7 +211,7 @@ export const sqliteAdmin = ({ dbPath, prefix = "/sqlite", configPath }) => {
211211
.post("/api/totp/generate", async ({ session, set }) => {
212212
if (!session) { set.status = 401; return; }
213213
const secret = authenticator.generateSecret();
214-
const otpauth = authenticator.keyuri(session.username, 'SQLite Admin', secret);
214+
const otpauth = authenticator.keyuri(session.username, 'SQLite', secret);
215215
const qrCode = await QRCode.toDataURL(otpauth);
216216
return { success: true, secret, qrCode };
217217
})

src/ui/index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<head>
44
<meta charset="UTF-8" />
55
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
6-
<title>SQLite Admin</title>
6+
<title>SQLite</title>
77
<link rel="preconnect" href="https://fonts.googleapis.com" />
88
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
99
<link

src/ui/src/App.jsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1010,7 +1010,7 @@ export default function App() {
10101010
<Group gap={4}>
10111011
<IconDatabase stroke={2.5} size={24} color="#37352F" />
10121012
<Text fw={700} size="md" c="#37352F">
1013-
SQLite Admin
1013+
SQLite
10141014
</Text>
10151015
</Group>
10161016
</Group>
@@ -1388,7 +1388,7 @@ export default function App() {
13881388
</ThemeIcon>
13891389
<Stack gap={0} mt={4}>
13901390
<Title order={1} fw={700} fz={40}>
1391-
SQLite Admin
1391+
SQLite
13921392
</Title>
13931393
<Text c="dimmed" size="lg">
13941394
Manage your local database schema and data.

src/ui/src/components/Login.jsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ export function Login({ onLogin }) {
7979
<IconDatabase size={34} />
8080
</ThemeIcon>
8181
<Title order={1} fw={700}>
82-
SQLite Admin Login
82+
SQLite Login
8383
</Title>
8484
</Stack>
8585

0 commit comments

Comments
 (0)