File tree Expand file tree Collapse file tree 3 files changed +20
-0
lines changed Expand file tree Collapse file tree 3 files changed +20
-0
lines changed Original file line number Diff line number Diff line change
1
+ import { Callout } from \' nextra/components\' ;
2
+
3
+ ::
4
+
1
5
Running on Localhost
2
6
--------------------
3
7
@@ -7,6 +11,10 @@ To run your project on localhost type:
7
11
8
12
ship run local
9
13
14
+ <Callout emoji=\" ⚠️\" >
15
+ An ngrok account is required to run this command.
16
+ </Callout>
17
+
10
18
This will start a local instance with a number of ways to interact with it:
11
19
12
20
- A Console REPL, which will start immediately in the console.
Original file line number Diff line number Diff line change
1
+ import { Callout } from \' nextra/components\' ;
2
+
1
3
Steamship
2
4
=========
3
5
@@ -39,6 +41,10 @@ Then run:
39
41
40
42
ship run local
41
43
44
+ <Callout emoji=\" ⚠️\" >
45
+ An ngrok account is required to run this command.
46
+ </Callout>
47
+
42
48
Now that you've interacted with your new agent, you're ready to start modifying it in :code: `src/api.py `.
43
49
44
50
See the **[Agent Guidebook](/agent-guidebook) ** for details.
Original file line number Diff line number Diff line change @@ -80,3 +80,9 @@ find "$DOCSDIR" -name '*.md' -exec sed -i '' 's/(\([^)]*.png\))/(\/\1)/g' {} \;
80
80
81
81
# Remove the /index.md from all links
82
82
find " $DOCSDIR " -name " *.md" -exec sed -i ' ' ' s|/index.md||g' {} \;
83
+
84
+ mdx=(" $DOCSDIR /index.md" " $DOCSDIR /developing/running.md" )
85
+ # Convert all files in mdx to .mdx files
86
+ for file in " ${mdx[@]} " ; do
87
+ mv " $file " " ${file% .md} .mdx"
88
+ done
You can’t perform that action at this time.
0 commit comments