Multi user blog built using google app engine with webapp2.
Deployed app can be found at https://ansonyu0910.appspot.com/
- Install Google App Engine SDK.
- Sign Up for a Google App Engine Account.
- Create a new project in Google’s Developer Console using a unique name.
- Follow the App Engine Quickstart to get a sample app up and running.
- Clone this directory.
- Since Python module pytz is used to consider timezone issues, it is required to install pytz into project's directory:
- Create a directory to store third-party libraries
mkdir lib
- Use pip (version 6 or later) with the -t flag to copy the libraries into the folder you created in the previous step.
pip install -t lib/ pytz
- You can then execute
dev_appserver.py .
in the directory to run a copy of the app on your own computer, and access it at http://localhost:8080/.