Skip to content

Commit 6158dfc

Browse files
Added sidebar links
1 parent c1c3e08 commit 6158dfc

File tree

6 files changed

+42
-9
lines changed

6 files changed

+42
-9
lines changed

docs/.vuepress/config.js

Lines changed: 35 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,12 +6,43 @@ module.exports = {
66
displayAllHeaders: true,
77
nav: [
88
{ text: 'Home', link: '/' },
9-
{ text: 'Azure', link: '/azure/' },
9+
{ text: 'Azure', link: '/azure/', items: [
10+
{text: 'DevOps', link: 'some'}
11+
] },
1012
{ text: 'DevOps', link: '/devops/' },
13+
{ text: 'php', link: '/php/' },
1114
{ text: 'LinkedIn', link: 'https://www.linkedin.com/in/codestellar/' }
12-
],
13-
sidebar: 'auto'
14-
},
15+
],
16+
sidebar: [
17+
{
18+
title: 'Azure', // required
19+
path: '/azure/', // optional, link of the title, which should be an absolute path and must exist
20+
collapsable: false, // optional, defaults to true
21+
sidebarDepth: 1, // optional, defaults to 1
22+
children: [
23+
'/'
24+
]
25+
},
26+
{
27+
title: 'AWS', // required
28+
path: '/aws/', // optional, link of the title, which should be an absolute path and must exist
29+
collapsable: false, // optional, defaults to true
30+
sidebarDepth: 1, // optional, defaults to 1
31+
children: [
32+
'/'
33+
]
34+
},
35+
{
36+
title: '.Net Core', // required
37+
path: '/netcore/', // optional, link of the title, which should be an absolute path and must exist
38+
collapsable: false, // optional, defaults to true
39+
sidebarDepth: 1, // optional, defaults to 1
40+
children: [
41+
'/'
42+
]
43+
}
44+
]
45+
},
1546
// configureWebpack: {
1647
// resolve: {
1748
// alias: {

docs/azure/azure-storage.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
# Azure Storage

docs/azure/azure-storage/ReadMe.Md

Whitespace-only changes.

docs/devops/ReadMe.md

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ docker run --name jenkins-docker --rm --detach \
4747
docker build -t myjenkins-blueocean:1.1 .
4848
````
4949
- Run your image as container:
50-
````
50+
````shell
5151
docker run \
5252
--name jenkins-blueocean \
5353
--rm \
@@ -67,7 +67,7 @@ docker run \
6767
docker volume list
6868
````
6969
- Now that you have the container active, run:
70-
`````shell
70+
````shell
7171
docker ps -a
7272
````
7373

@@ -76,11 +76,10 @@ docker ps -a
7676
docker exec <container_name_or_id> cat /var/jenkins_home/secrets/initialAdminPassword
7777
````
7878

79-
::: Tip to run bash commands inside your container
79+
::: tip To run bash commands inside your container
8080
docker exec -it <container_name_or_id> bash
8181
:::
8282

83-
84-
::: Warning
83+
::: warning
8584
Simply removing the container and images does not remove the volume
8685
:::

docs/php/ReadMe.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
# php Articles
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
# Creating a Shopping Cart in php

0 commit comments

Comments
 (0)