Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
L
llm-train
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wuhao
llm-train
Commits
ee2bdc2c
Commit
ee2bdc2c
authored
Apr 07, 2024
by
wuhao
🎯
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
sader
parent
b3701610
Changes
5
Show whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
17 additions
and
4 deletions
+17
-4
extensions.json
.vscode/extensions.json
+1
-3
migration.sql
prisma/migrations/20240407074701_start/migration.sql
+15
-0
1674969615895-1712111008104-804247983.jpeg
...ads/2024-04-03/1674969615895-1712111008104-804247983.jpeg
+0
-0
1674969615895-1712476207291-432791642.jpeg
...ads/2024-04-07/1674969615895-1712476207291-432791642.jpeg
+0
-0
ssr.jsx
src/pages/ssr.jsx
+1
-1
No files found.
.vscode/extensions.json
View file @
ee2bdc2c
{
"recommendations"
:
[
"ppz.ppz"
]
"recommendations"
:
[]
}
\ No newline at end of file
prisma/migrations/20240407074701_start/migration.sql
0 → 100644
View file @
ee2bdc2c
/*
Warnings:
- You are about to drop the column `created` on the `Folder` table. All the data in the column will be lost.
- You are about to drop the column `updated` on the `Folder` table. All the data in the column will be lost.
- Added the required column `poster` to the `Folder` table without a default value. This is not possible if the table is not empty.
- Added the required column `updatedAt` to the `Folder` table without a default value. This is not possible if the table is not empty.
*/
-- AlterTable
ALTER
TABLE
`Folder`
DROP
COLUMN
`created`
,
DROP
COLUMN
`updated`
,
ADD
COLUMN
`createdAt`
DATETIME
(
3
)
NOT
NULL
DEFAULT
CURRENT_TIMESTAMP
(
3
),
ADD
COLUMN
`poster`
VARCHAR
(
191
)
NOT
NULL
,
ADD
COLUMN
`updatedAt`
DATETIME
(
3
)
NOT
NULL
;
public/uploads/2024-04-03/1674969615895-1712111008104-804247983.jpeg
deleted
100644 → 0
View file @
b3701610
177 KB
public/uploads/2024-04-0
3/1674969615895-1712110902218-628594070
.jpeg
→
public/uploads/2024-04-0
7/1674969615895-1712476207291-432791642
.jpeg
View file @
ee2bdc2c
File moved
src/pages/ssr.jsx
View file @
ee2bdc2c
...
...
@@ -10,7 +10,7 @@ function ServerSidePage({ folders }) {
return
(
<
div
className=
"p-4"
>
<
span
class=
"bg-clip-text text-transparent bg-gradient-to-r from-pink-500 to-violet-500"
>
<
span
class
Name
=
"bg-clip-text text-transparent bg-gradient-to-r from-pink-500 to-violet-500"
>
服务端渲染页面
</
span
>
<
div
className=
"gap-2 grid xl:grid-cols-8 lg:grid-cols-6 md:grid-cols-4 sm:grid-cols-2 mt-4"
>
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment