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

upload-fltb #1

Merged
merged 7 commits into from
Oct 13, 2023
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
24 changes: 24 additions & 0 deletions fltb/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
# Logs
logs
*.log
npm-debug.log*
yarn-debug.log*
yarn-error.log*
pnpm-debug.log*
lerna-debug.log*

node_modules
dist
dist-ssr
*.local

# Editor directories and files
.vscode/*
!.vscode/extensions.json
.idea
.DS_Store
*.suo
*.ntvs*
*.njsproj
*.sln
*.sw?
3 changes: 3 additions & 0 deletions fltb/.vscode/extensions.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
{
"recommendations": ["Vue.volar", "Vue.vscode-typescript-vue-plugin"]
}
28 changes: 28 additions & 0 deletions fltb/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
# User Management System by FLTB

Vite + Vue 3 + NaiveUI + Bootstrap + Particles + Animate.css

``` bash
fltb@fltb-at-home:~$ neofetch
_,met$$$$$gg. fltb@fltb-at-home
,g$$$$$$$$$$$$$$$P. -------------------
,g$$P" """Y$$.". OS: Debian GNU/Linux 12 (bookworm) x86_64
,$$P' `$$$. Host: MS-7B89 1.0
',$$P ,ggs. `$$b: Kernel: 6.1.0-12-amd64
`d$$' ,$P"' . $$$ Uptime: 6 hours, 44 mins
$$P d$' , $$P Packages: 3145 (dpkg), 8 (flatpak)
$$: $$. - ,d$$' Shell: bash 5.2.15
$$; Y$b._ _,d$P' Resolution: 1920x1080
Y$$. `.`"Y$$$$P"' DE: Plasma 5.27.5
`$$b "-.__ WM: KWin
`Y$$ Theme: [Plasma], Breeze [GTK2/3]
`Y$$. Icons: [Plasma], breeze [GTK2/3]
`$$b. Terminal: konsole
`Y$$b. CPU: AMD Ryzen 5 2600 (12) @ 3.400GHz
`"Y$b._ GPU: NVIDIA GeForce GTX 1650 SUPER
`""" Memory: 10495MiB / 15934MiB
fltb@fltb-at-home:~$ node -v
v18.13.0
fltb@fltb-at-home:~$ npm -v
9.2.0
```
13 changes: 13 additions & 0 deletions fltb/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/svg+xml" href="/cube.svg" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>User Management System by FLTB</title>
</head>
<body>
<div id="app"></div>
<script type="module" src="/src/main.js"></script>
</body>
</html>
Loading