Skip to content

Latest commit

 

History

History
20 lines (17 loc) · 1.21 KB

File metadata and controls

20 lines (17 loc) · 1.21 KB

Multi User Blog

Multi user blog built using google app engine with webapp2.
Deployed app can be found at https://ansonyu0910.appspot.com/

My image

Setup

Running blog locally

  1. Clone this directory.
  2. 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
  1. 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/.