I am having problems configuring a new Windows computer with Google App Engine. The last time I used it with the old computer was more than one year ago and I don't remember if I used the same tools.
Here are the steps I followed:
- Open a cmd window
conda create --name gae-firebase python=2
setx CLOUDSDK_PYTHON C:\Anaconda3\envs\gae-firebase\python.exe
- Close the cmd window
- Download and run GoogleCloudSDKInstaller.exe (disabling bundled Python). At the end press 1 to reinitialize the existing configuration, press 1 to keep the existing account, press 2 to select an existing project, press N not to configure the compute engine.
- Open the Google Cloud SDK Shell
activate gae-firebase
cd \workspace\google
git clone https://github.com/GoogleCloudPlatform/python-docs-samples.git
cd python-docs-samples\appengine\standard\firebase\firenotes
pip install -r backend\requirements.txt -t lib
dev_appserver.py frontend/app.yaml backend/app.yaml
and Answer yes to install the app-engine-python component.
At the end it says dev_appserver.py: error: too few arguments
It looks like the script doesn't see the yaml file names in the argument list. I tried to uninstall and reinstall many times changing the order of items or changing other things inspired by the answers to similar questions for hours, but this was the closest I got to success.
What am I doing wrong?