FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
secureCodeBox/documentation/Taskfile.yaml at main · secureCodeBox/secureCodeBox · GitHub
Uh oh!
There was an error while loading.
Please reload this page
.
secureCodeBox
/
secureCodeBox
Public
Notifications
You must be signed in to change notification settings
Fork
183
Star
985
Code
Issues
62
Pull requests
3
Discussions
Actions
Projects
Security and quality
1
Insights
Additional navigation options
Code
Issues
Pull requests
Discussions
Actions
Projects
Security and quality
Insights
Expand file tree
Breadcrumbs
secureCodeBox
/
documentation
/
Taskfile.yaml
Copy path
More file actions
More file actions
Latest commit
History
History
History
33 lines (28 loc) · 767 Bytes
Breadcrumbs
secureCodeBox
/
documentation
/
Taskfile.yaml
Copy path
File metadata and controls
33 lines (28 loc) · 767 Bytes
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
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
#
SPDX-FileCopyrightText: the secureCodeBox authors
#
#
SPDX-License-Identifier: Apache-2.0
version
:
"
3.48.0
"
tasks
:
puml
:
desc
:
"
Generate PlantUML images from .puml files
"
sources
:
-
'
{{ .TASKFILE_DIR }}/**/*.puml
'
cmds
:
-
for
:
sources
cmd
:
plantuml -tpng {{ .ITEM }}
clean
:
desc
:
"
Remove node_modules directory
"
cmds
:
-
rm -rf {{ .TASKFILE_DIR }}/node_modules
install
:
desc
:
"
Install Docusaurus dependencies
"
cmds
:
-
cd {{ .TASKFILE_DIR }} && npm install
status
:
-
'
[ -d {{ .TASKFILE_DIR }}/node_modules ]
'
start
:
desc
:
"
Start local Docusaurus server (visit http://localhost:3000)
"
deps
:
[install]
cmds
:
-
cd {{ .TASKFILE_DIR }} && npm start
interactive
:
true
Back
|
FazBrowse Home
|
New Git URL