Skip to content

Commit e94550e

Browse files
authored
Merge pull request #261 from nullstack/sort-docs
Sort docs
2 parents 386a070 + 4e85e8a commit e94550e

File tree

67 files changed

+192
-353
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

67 files changed

+192
-353
lines changed

i18n/en-US/articles/application-startup.md

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
---
22
title: Application Startup
33
description: The start function will run only once when your application loads and is a good place for setting up your context
4+
action: ⚔ Learn about the [application startup](/application-startup).
45
---
56

67
The **server.js**/**client.js** files at your application root are responsible for starting your application.
@@ -61,8 +62,4 @@ context.start = async function() {
6162
export default Application;
6263
```
6364

64-
> 🔒 Server functions with the name starting with "_" do not generate an API endpoint to avoid malicious API calls.
65-
66-
## Next step
67-
68-
⚔ Learn about how to create a [script runners](/script-runner).
65+
> 🔒 Server functions with the name starting with "_" do not generate an API endpoint to avoid malicious API calls.

i18n/en-US/articles/context-data.md

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -44,8 +44,4 @@ class ContextData extends Nullstack {
4444
export default ContextData;
4545
```
4646

47-
> 💡 Camelized keys from the `data` object will result in kebab attributes in the DOM.
48-
49-
## Next step
50-
51-
⚔ Learn about the [context `instances`](/context-instances).
47+
> 💡 Camelized keys from the `data` object will result in kebab attributes in the DOM.

i18n/en-US/articles/context-environment.md

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -68,8 +68,4 @@ class BlogArticle extends Nullstack {
6868
export default BlogArticle;
6969
```
7070
71-
> 🔥 `environment.event` is only available in client functions/lifecycles.
72-
73-
## Next step
74-
75-
⚔ Learn about the [context `page`](/context-page).
71+
> 🔥 `environment.event` is only available in client functions/lifecycles.

i18n/en-US/articles/context-instances.md

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -90,8 +90,4 @@ The use of `instances` unlocks unlimited custom behaviors like:
9090
- A notification icon at the navbar that can be updated from other components at certain actions
9191
- A *toast* component that can be invoked from anywhere in your application
9292
- A *store* system with custom dispatch methods similar to Redux
93-
- Something we haven't even imagined, dream on and post your ideas on GitHub!
94-
95-
## Next step
96-
97-
⚔ Learn about the [context `environment`](/context-environment).
93+
- Something we haven't even imagined, dream on and post your ideas on GitHub!

i18n/en-US/articles/context-page.md

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -133,8 +133,4 @@ class Application extends Nullstack {
133133
export default Application;
134134
```
135135

136-
> 🔥 Assigning to the `status` key during the [single-page application](/full-stack-lifecycle) mode will have no effect.
137-
138-
## Next step
139-
140-
⚔ Learn about the [context `project`](/context-project).
136+
> 🔥 Assigning to the `status` key during the [single-page application](/full-stack-lifecycle) mode will have no effect.

i18n/en-US/articles/context-project.md

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -99,8 +99,4 @@ class Application extends Nullstack {
9999
export default Application;
100100
```
101101

102-
> 💡 You can override the automatically generated **manifest.json** and **robots.txt** by serving your own file from the **public** folder
103-
104-
## Next step
105-
106-
⚔ Learn about the [context `settings`](/context-settings).
102+
> 💡 You can override the automatically generated **manifest.json** and **robots.txt** by serving your own file from the **public** folder

i18n/en-US/articles/context-secrets.md

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -52,8 +52,4 @@ export default Application;
5252

5353
Any environment variable starting with NULLSTACK_SECRETS_ will be mapped to the `secrets` in that environment.
5454

55-
> 🐱‍💻 NULLSTACK_SECRETS_PRIVATE_KEY will be mapped to `secrets.privateKey`
56-
57-
## Next step
58-
59-
⚔ Learn about the [server request and response](/server-request-and-response).
55+
> 🐱‍💻 NULLSTACK_SECRETS_PRIVATE_KEY will be mapped to `secrets.privateKey`

i18n/en-US/articles/context-settings.md

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -53,8 +53,4 @@ export default Application;
5353

5454
Any environment variable starting with NULLSTACK_SETTINGS_ will be mapped to the `settings` in that environment.
5555

56-
> 🐱‍💻 NULLSTACK_SETTINGS_PUBLIC_KEY will be mapped to `settings.publicKey`
57-
58-
## Next step
59-
60-
⚔ Learn about the [context `secrets`](/context-secrets).
56+
> 🐱‍💻 NULLSTACK_SETTINGS_PUBLIC_KEY will be mapped to `settings.publicKey`

i18n/en-US/articles/context.md

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -183,8 +183,4 @@ class Counter extends Nullstack {
183183
}
184184

185185
export default Counter;
186-
```
187-
188-
## Next step
189-
190-
⚔ Learn about [routes and params](/routes-and-params).
186+
```

i18n/en-US/articles/full-stack-lifecycle.md

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -207,8 +207,4 @@ class Component extends Nullstack {
207207
}
208208

209209
export default Component;
210-
```
211-
212-
## Next steps
213-
214-
⚔ Learn about [server functions](/server-functions).
210+
```

0 commit comments

Comments
 (0)