Skip to content

Commit b8e6811

Browse files
committed
nothing
1 parent 5642738 commit b8e6811

File tree

7 files changed

+302
-8
lines changed

7 files changed

+302
-8
lines changed

.gitignore

+2-1
Original file line numberDiff line numberDiff line change
@@ -43,4 +43,5 @@ data
4343
nginx/log
4444
packages.pdm-python
4545
.pdm-python
46-
build
46+
build
47+
.pdm-build

config/config.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ allow_origin_regex: http://127\.0\.0\.1:.*
99
# mysql数据库信息
1010
databases:
1111
host: 127.0.0.1
12-
username: admin
12+
username: root
1313
password: '123456'
1414
port: '3306'
1515
dbname: blog

pdm.lock

+289-3
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

pyproject.toml

+5
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,7 @@ dependencies = [
2525
"python-multipart>=0.0.6",
2626
"websockets>=11.0.3",
2727
"ruamel-yaml>=0.17.28",
28+
"cryptography>=40.0.2",
2829
]
2930
requires-python = ">=3.11"
3031
license = {text = "MIT"}
@@ -34,3 +35,7 @@ requires = ["pdm-backend"]
3435
build-backend = "pdm.backend"
3536

3637

38+
[tool.pdm.dev-dependencies]
39+
test = [
40+
"bandit>=1.7.5",
41+
]

static/src/components/cpu.vue

+1-1
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ const start = () => {
6969
})
7070
}
7171
onMounted(() => {
72-
72+
start()
7373
})
7474
7575

static/src/route/home.vue

+2
Original file line numberDiff line numberDiff line change
@@ -59,13 +59,15 @@
5959
</section>
6060
<n-back-top :right="40" :bottom="60"/>
6161
<Footer />
62+
<!-- <CPU/> -->
6263
</template>
6364
<script setup lang="ts">
6465
import { ref } from 'vue'
6566
import { OpenAPI, Service, UserOut, ApiError, PostOutPage, PostOut, TagInDB } from '@/client'
6667
import Headers from '@/components/header.vue';
6768
import Footer from '@/components/footer.vue';
6869
import Tags from '@/components/tags.vue';
70+
import CPU from '@/components/cpu.vue'
6971
import { NTag, NLayout, NLayoutContent, NCard, NPagination, NAvatar, NEllipsis, NAffix, NBackTop } from 'naive-ui'
7072
import { watchEffect } from 'vue';
7173
import { imgbase, loading } from '@/main';

utill/temp.txt

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
fc840b0e-df2d-425d-bc05-f62aa16e5103,ZMOKM,1684130749
21
977abffe-723a-4844-843d-a6c05e322fa2,IGVTK,1684309662
3-
9f2578b0-4bf6-41cf-9d79-0a4878d8ce7e,ZKDAX,1684313773
42
35e9d6da-3cdf-4f36-a5d8-1e264242d700,AKJKN,1684313856
3+
de4875ae-79f4-495a-8816-b9845d74c45b,QMJAI,1685529735
4+
56a5f8b7-4f38-4aba-84db-61ade07ec1bf,PPCNQ,1685529752

0 commit comments

Comments
 (0)