Changes between Initial Version and Version 1 of FPeS

Show
Ignore:
Timestamp:
03/21/08 00:28:57 (2 years ago)
Author:
tim (IP: 68.91.95.153)
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • FPeS

    v0 v1  
     1 
     2= Foto Purchase example Site = 
     3== An Online Demonstration of FPyS with TurboGears == 
     4 
     5FPeS is the first working example of FPyS with a live site.  It is a drop dead simple 
     6application that is wired up to the Amazon FPS Sandbox instance that allows people to  
     7choose from several pictures and purchase the ability to download full sized versions 
     8of those pictures. 
     9 
     10FPeS is *not* a legitimate ecommerce site.  Users can't currently create real login  
     11accounts, no money ever exchanges hands, and there is no administrative interface.   
     12It's sole purpose for being is to prove that the FPyS library is workable in the most 
     13basic sense. 
     14 
     15The application is deployed as a [http://fpes.achievewith.us live demo], and it can be  
     16checked out of Subversion for installation and inspection by developers.   
     17 
     18To check out a copy, do the following: 
     19 
     20{{{ 
     21user@host $ svn co http://achievewith.us/svn/public/fpys/examples/FPeS/ 
     22user@host $ cd FPeS 
     23}}} 
     24 
     25Before running the application, open dev.cfg and edit the following properties appropriately: 
     26 * aws_access_key_id 
     27 * secret_access_key 
     28 * sqlalchemy.dburi (sqlite is the default) 
     29 
     30Next up, run create_caller_token.py: 
     31{{{ 
     32user@host $ python create_caller_token.py 
     33 
     34Your caller token: CALLER_TOKEN 
     35}}} 
     36 
     37Take the caller token that came out of the last step, open up dev.cfg again, and set 
     38the `default_caller_token` with your new found value. 
     39 
     40At this point, the application should fire up: 
     41{{{ 
     42user@host $ python start-fpes.py 
     43}}} 
     44