Can't run from Terminal
I know this is a very noob thing to ask but I have tried to run the app in terminal and cd into the app folder. Used ls to double check the files are correct but when I try any of this:
wasp db migrate-dev # init the db
wasp start
it says "zsh: parse error near `\n' "
I had a lot of trouble getting Python set up originally so I know this is me. Any advice?
4 Replies
Have you tried writing just
wasp start
?
\n is a line break which may occur if you are pasting this two lines as once
and # is start of a comment so you don't want to write this symbol and everything after it in the terminal@rongwroom all questions are valid 🙂 Make sure to omit the comment (# init the db) when pasting the command in terminal.
so just run
wasp db migrate-dev
and then wasp start
Yeah I know that was just a comment on the line of code so I did but gives me errors. I’ll try again later today and if I’m still getting the same, I think there is some issue with the way my terminal is set up
Idea: maybe, while adding
export PATH
to your .profile or other corresponding file, you messed smth up so ZSH complains about that?