apirrone commited on
Commit
5903a5d
·
1 Parent(s): 60dd2e0

[FAQ] just link to the blog post for app creation

Browse files
Files changed (1) hide show
  1. src/pages/FAQ.jsx +3 -22
src/pages/FAQ.jsx CHANGED
@@ -111,32 +111,13 @@ mini.goto_target(
111
  },
112
  {
113
  id: 'apps',
114
- title: 'Writing & Sharing Apps',
115
  items: [
116
  {
117
- question: 'How do I write a Reachy Mini app?',
118
- answer: `Inherit from ReachyMiniApp and implement run:
119
-
120
- \`\`\`python
121
- from reachy_mini.apps.app import ReachyMiniApp
122
- from reachy_mini import ReachyMini
123
-
124
- class MyApp(ReachyMiniApp):
125
- def run(self, reachy_mini: ReachyMini, stop_event):
126
- # your app logic
127
- ...
128
- \`\`\``,
129
  tags: ['SDK', 'Python'],
130
  },
131
- {
132
- question: 'How can I generate a new app template quickly?',
133
- answer: `Use the app template generator:
134
-
135
- \`reachy-mini-make-app my_app_name\`
136
-
137
- This creates a complete project structure with pyproject.toml, README.md, and the main app file.`,
138
- tags: ['SDK'],
139
- },
140
  ],
141
  },
142
  {
 
111
  },
112
  {
113
  id: 'apps',
114
+ title: 'Making & Sharing Apps',
115
  items: [
116
  {
117
+ question: 'How do I Make a Reachy Mini app?',
118
+ answer: `Check this tutorial : https://huggingface.co/blog/pollen-robotics/make-and-publish-your-reachy-mini-apps`,
 
 
 
 
 
 
 
 
 
 
119
  tags: ['SDK', 'Python'],
120
  },
 
 
 
 
 
 
 
 
 
121
  ],
122
  },
123
  {