Skip to content

Commit 99dd700

Browse files
committed
Fixed broken issues with document
1 parent 6ed5890 commit 99dd700

File tree

4 files changed

+48
-152
lines changed

4 files changed

+48
-152
lines changed

docs/key-value-storage.md

-133
This file was deleted.

docs/project-creating-your-own.md

+5-3
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,11 @@
11
---
2-
id: projects
2+
id: nim-creating-project
33
title: Creating your project
4-
sidebar_label: Project
4+
sidebar_label: Creating your project
55
---
66

7+
import useBaseUrl from '@docusaurus/useBaseUrl';
8+
79
### Creating your project template with the Nimbella CLI
810

911
With the Nimbella CLI, you can create a project template that you can use to instantly start building your project.
@@ -16,7 +18,7 @@ nim project create folder_name
1618

1719
After running this command in your command prompt, you should see a message saying your project folder is available.
1820

19-
![nim project create in command prompt](https://github.com/JamieDawson/docs/blob/7a-nim-project-create/static/img/7a-nim-project-create.png)
21+
<img alt="Docusaurus with Keytar" src={useBaseUrl('static/img/nim-project-create-ex.png')} />
2022

2123
### Creating a YAML file for your project
2224

sidebars.js

+43-16
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,45 @@
11
module.exports = {
2-
someSidebar: {
3-
"Introduction": ["welcome", "what-is-nimbella", "serverless", "serverless-vs-server", "serveless-apps", "why-nimbella", "account", "features", "openwhisk"],
4-
"Nimbella Project": ["deployer-overview", "projects", "namespaces", "actions", "project", "configuration", "deployer-feature", "single-action", "namespace-to-projects"],
5-
"Serverless SDK": ["key-value-sdk", "file-stores"],
6-
"Runtime & Languages": ["runtime"],
7-
"CLI": ["install", "commands", "flags", "command-summary", "wsk"],
8-
"Workbench": ["workbench"],
9-
"Getting Started": ["getting-started", "building"],
10-
"Developing and Deploying Serverless APIs": ["sample-project-walkthrough"],
11-
"Developing & Deploying Web": ["web", "web-content"],
12-
"Taking your application to production": ["production"],
13-
"Integrations": ["commander", "postman", "netlify"],
14-
"Porting existing applications onto Nimbella": ["heroku", "express", "django", "flask", "lambda", "openwhisk-port"],
15-
Docusaurus: ['doc1', 'doc2', 'doc3'],
16-
Features: ['mdx'],
17-
},
2+
someSidebar: {
3+
Introduction: [
4+
'welcome',
5+
'what-is-nimbella',
6+
'serverless',
7+
'serverless-vs-server',
8+
'serveless-apps',
9+
'why-nimbella',
10+
'account',
11+
'features',
12+
'openwhisk',
13+
],
14+
'Nimbella Project': [
15+
'deployer-overview',
16+
'projects',
17+
'namespaces',
18+
'actions',
19+
'project',
20+
'configuration',
21+
'deployer-feature',
22+
'single-action',
23+
'namespace-to-projects',
24+
],
25+
'Serverless SDK': ['key-value-sdk', 'file-stores'],
26+
'Runtime & Languages': ['runtime'],
27+
CLI: ['install', 'commands', 'flags', 'command-summary', 'wsk'],
28+
Workbench: ['workbench'],
29+
'Getting Started': ['getting-started', 'building', 'nim-creating-project'],
30+
'Developing and Deploying Serverless APIs': ['sample-project-walkthrough'],
31+
'Developing & Deploying Web': ['web', 'web-content'],
32+
'Taking your application to production': ['production'],
33+
Integrations: ['commander', 'postman', 'netlify'],
34+
'Porting existing applications onto Nimbella': [
35+
'heroku',
36+
'express',
37+
'django',
38+
'flask',
39+
'lambda',
40+
'openwhisk-port',
41+
],
42+
Docusaurus: ['doc1', 'doc2', 'doc3'],
43+
Features: ['mdx'],
44+
},
1845
};

static/img/nim-project-create-ex.png

19.4 KB
Loading

0 commit comments

Comments
 (0)