Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have just installed the command line tool for appfog and logged in, in the instructions it says run af update app Now I am trying to setup [anchorcms][1] do I run af update anchor (when I am in the anchor directory or in its parent directory) because when I do so I get the following error. Also one of the first getting started commands is target [url] do I run that with the square brackets? Also do I write af before that, and do I put my app fog url inside the square brackets.

If at all, you could help me through the steps of deploying anchorcms to appfog, that would be amazing.

Error (JSON 404): Not Found

The output i get for af apps

Anderss-MacBook-Pro:anchor anderskitson$ af apps

+-------------+----+---------+---------------------------+----------+--------+
| Application | #  | Health  | URLS                      | Services | In     |
+-------------+----+---------+---------------------------+----------+--------+
| anchortuts  | 1  | RUNNING | anchortuts.ap01.aws.af.cm |          | ap-aws |
+-------------+----+---------+---------------------------+----------+--------+


  [1]: http://anchorcms.com/
share|improve this question

1 Answer

No do not run the command with square brackets.

You only need to set the target once to https://api.appfog.com

af target https://api.appfog.com

Then login with"

af login email@example.com

The first time an app is uploaded to AppFog you use the push command. From then on you use the update command.

Example:

From the app's root folder create a new AppFog app named mycmsapp. The command will lead you through a set of questions.

af push mycmsapp

Later when you have made changes to your app and are ready to publish them:

af update mycmsapp
share|improve this answer
Do I set my target to my subdomain I created or to api.appfog.com? – Anders Kitson Feb 19 at 18:14
Target is set to only api.appfog.com. The target is what the af tool uses to talk to AppFog. It does not relate to your app. Set it only once and forget it. – Tim Santeford Feb 19 at 21:38
Ok I followed your instructions and used push mycms app inside of my anchor folder at this link anchorcms.hp.af.cm I am getting a 404 not found. – Anders Kitson Feb 19 at 21:53
try running af apps to make sure that domain is mapped to your app and the app is running. – Tim Santeford Feb 20 at 0:12

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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