This repository has been archived by the owner on Dec 21, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathblog_technical.code-workspace
74 lines (73 loc) · 1.93 KB
/
blog_technical.code-workspace
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
{
"folders": [
{
"path": "./src/content/posts/2023",
"name": "Posts 2023"
},
{
"path": "./src/content/posts",
"name": "Posts"
},
{
"name": "blog_technical",
"path": "."
},
],
"settings": {
"insertDateString.format": "YYYY-MM-DDThh:mm:ss+02:00",
"insertDateString.formatDate": "YYYY-MM-DD",
"insertDateString.formatTime": "hh:mm:ss",
},
"tasks": {
"version": "2.0.0",
"tasks": [
{
"label": "Generate site",
"type": "shell",
"command": "hugo",
"options": {
"cwd": "${workspaceFolder:blog_technical}/src",
}
},
{
"label": "Run Server",
"type": "shell",
"command": "hugo",
"args": [
"serve",
],
"options": {
"cwd": "${workspaceFolder:blog_technical}/src",
}
},
{
"label": "Run Server with Drafts",
"type": "shell",
"command": "hugo",
"args": [
"serve",
"-D"
],
"options": {
"cwd": "${workspaceFolder:blog_technical}/src",
}
},
{
"label": "Create a New Post",
"type": "shell",
"command": "python",
"args": [
"new_post.py",
],
"options": {
"cwd": "${workspaceFolder:blog_technical}/tools",
}
},
]
},
"extensions": {
"recommendations": [
"jsynowiec.vscode-insertdatestring"
]
}
}