Skip to content
This repository was archived by the owner on Oct 17, 2023. It is now read-only.

Commit 5bd155e

Browse files
authored
Merge pull request #1 from fltb/main
upload-fltb
2 parents c66f5b5 + 41e3cca commit 5bd155e

15 files changed

+2586
-0
lines changed

fltb/.gitignore

+24
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
# Logs
2+
logs
3+
*.log
4+
npm-debug.log*
5+
yarn-debug.log*
6+
yarn-error.log*
7+
pnpm-debug.log*
8+
lerna-debug.log*
9+
10+
node_modules
11+
dist
12+
dist-ssr
13+
*.local
14+
15+
# Editor directories and files
16+
.vscode/*
17+
!.vscode/extensions.json
18+
.idea
19+
.DS_Store
20+
*.suo
21+
*.ntvs*
22+
*.njsproj
23+
*.sln
24+
*.sw?

fltb/.vscode/extensions.json

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
{
2+
"recommendations": ["Vue.volar", "Vue.vscode-typescript-vue-plugin"]
3+
}

fltb/README.md

+28
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
# User Management System by FLTB
2+
3+
Vite + Vue 3 + NaiveUI + Bootstrap + Particles + Animate.css
4+
5+
``` bash
6+
fltb@fltb-at-home:~$ neofetch
7+
_,met$$$$$gg. fltb@fltb-at-home
8+
,g$$$$$$$$$$$$$$$P. -------------------
9+
,g$$P" """Y$$.". OS: Debian GNU/Linux 12 (bookworm) x86_64
10+
,$$P' `$$$. Host: MS-7B89 1.0
11+
',$$P ,ggs. `$$b: Kernel: 6.1.0-12-amd64
12+
`d$$' ,$P"' . $$$ Uptime: 6 hours, 44 mins
13+
$$P d$' , $$P Packages: 3145 (dpkg), 8 (flatpak)
14+
$$: $$. - ,d$$' Shell: bash 5.2.15
15+
$$; Y$b._ _,d$P' Resolution: 1920x1080
16+
Y$$. `.`"Y$$$$P"' DE: Plasma 5.27.5
17+
`$$b "-.__ WM: KWin
18+
`Y$$ Theme: [Plasma], Breeze [GTK2/3]
19+
`Y$$. Icons: [Plasma], breeze [GTK2/3]
20+
`$$b. Terminal: konsole
21+
`Y$$b. CPU: AMD Ryzen 5 2600 (12) @ 3.400GHz
22+
`"Y$b._ GPU: NVIDIA GeForce GTX 1650 SUPER
23+
`""" Memory: 10495MiB / 15934MiB
24+
fltb@fltb-at-home:~$ node -v
25+
v18.13.0
26+
fltb@fltb-at-home:~$ npm -v
27+
9.2.0
28+
```

fltb/index.html

+13
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
<!doctype html>
2+
<html lang="en">
3+
<head>
4+
<meta charset="UTF-8" />
5+
<link rel="icon" type="image/svg+xml" href="/cube.svg" />
6+
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
7+
<title>User Management System by FLTB</title>
8+
</head>
9+
<body>
10+
<div id="app"></div>
11+
<script type="module" src="/src/main.js"></script>
12+
</body>
13+
</html>

0 commit comments

Comments
 (0)