up vote 1 down vote favorite
share [g+] share [fb]

The README is in Google's codepreview which uses Google-appengine.

To run the app locally (e.g. for testing), download the Google App Engine SDK from http://code.google.com/appengine/downloads.html. You can then run the server using

  make serve

I run make serve in my terminal after moving Google-appengine.app to my Application -folder in OS X Leopard.

I get

make: *** No rule to make target `serve'.  Stop.

How can you run the make serve to run the server for Google AppEngine?

link|improve this question

Please, create tag for Google-appengine. – Masi Jul 20 '09 at 22:24
1  
Tag created.... – Dan Walker Jul 20 '09 at 22:27
feedback

2 Answers

up vote 5 down vote accepted

To run a make target you have to be in the same directory as the Makefile, as far as I know. So after you download and extract/mount (I don't know which SDK you downloaded: Python or Java), cd into the directory with the Makefile and then you can type make server. Then it should work.

link|improve this answer
I downloaded App-Engine Launcher for Mac. I assumed that some SDK is inside it. – Masi Jul 20 '09 at 22:36
Did you go into codepreview's directory which contains the Makefile? That's where you type make serve – Jorge Israel Peña Jul 20 '09 at 23:53
feedback

I think that may be a menu item within Google-appengine.app. Try running it and poking around in the menus.

link|improve this answer
Thanks for the tip, but I did not find such a menu-item, not even by searching its manuals with the keywords. – Masi Jul 26 '09 at 6:40
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.