File tree 1 file changed +16
-0
lines changed
1 file changed +16
-0
lines changed Original file line number Diff line number Diff line change @@ -164,6 +164,22 @@ export default class CreateStoryblokAppCommand extends Command {
164
164
165
165
fs . rmSync ( `./temp-started/${ framework } /.git` , { recursive : true } )
166
166
167
+ const readmeContent = `
168
+ # Storyblok quick starter project
169
+
170
+ Welcome to this sample project for ${ frameworkDetails . name } !
171
+ This project serves as a quick starter for integrating Storyblok, a headless CMS, into your web development projects.
172
+
173
+ For starting, you can access to the \`${ folder } \` folder.
174
+ In the folder you have some files like:
175
+
176
+ - \`${ frameworkDetails . config } \`: the configuration with Storyblok API;
177
+ - \`${ frameworkDetails . bridge } \`: the initialization of the Storyblok Bridge.
178
+
179
+ `
180
+ fs . rmSync ( `./temp-started/${ framework } /README.md` )
181
+ fs . writeFileSync ( `./temp-started/${ framework } /README.md` , readmeContent )
182
+
167
183
copy ( `./temp-started/${ framework } ` , folder )
168
184
directoryTargetCreated = true
169
185
fs . rmSync ( './temp-started' , { recursive : true } )
You can’t perform that action at this time.
0 commit comments