updated post init instructions

This commit is contained in:
Dan Motzenbecker 2015-10-04 19:05:04 -04:00
parent f238e8d9e3
commit 08175a93d0
1 changed files with 9 additions and 4 deletions

View File

@ -247,14 +247,19 @@ init = (projName) ->
writeConfig config writeConfig config
launch config launch config
log '\nWhen Xcode appears, click the play button to run the app on the simulator.', 'yellow' log ''
log 'Then run the following for an interactive workflow:', 'yellow' log 'To get started with your new app, first cd into its directory:', 'yellow'
log "cd #{projNameHyph}", 'inverse' log "cd #{projNameHyph}", 'inverse'
log './start.sh', 'inverse' log ''
log 'First, choose the correct device (Probably [1]).', 'yellow' log 'Boot the REPL by typing:', 'yellow'
log 'natal repl', 'inverse'
log 'Then choose the correct device to connect to (probably 1).', 'yellow'
log ''
log 'At the REPL prompt type this:', 'yellow' log 'At the REPL prompt type this:', 'yellow'
log "(in-ns '#{projNameHyph}.core)", 'inverse' log "(in-ns '#{projNameHyph}.core)", 'inverse'
log ''
log 'Changes you make via the REPL or by changing your .cljs files should appear live.', 'yellow' log 'Changes you make via the REPL or by changing your .cljs files should appear live.', 'yellow'
log ''
log 'Try this command as an example:', 'yellow' log 'Try this command as an example:', 'yellow'
log '(swap! app-state assoc :text "Hello Native World")', 'inverse' log '(swap! app-state assoc :text "Hello Native World")', 'inverse'
log '' log ''