Changes between Version 12 and Version 13 of GoFlow_DocFr


Ignore:
Timestamp:
May 21, 2008, 7:47:27 AM (16 years ago)
Author:
GoFlow administrator <goflow@…>
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • GoFlow_DocFr

    v12 v13  
    99projet minimal, 1 rôle, 1 process, 1 activité: A dit bonjour, B reçoit le message.
    1010utilisation de l'appli de push pour diriger le message vers B
     11
     12 * python django-admin.py startproj myproj
     13{{{
     14INSTALLED_APPS = (
     15    ...,
     16    'django.contrib.admin',
     17    'goflow.workflow',
     18    'goflow.instances',
     19)
     20}}}
     21
     22{{{
     23DATABASE_ENGINE = 'sqlite3'     # 'postgresql_psycopg2', 'postgresql', 'mysql', 'sqlite3' or 'oracle'.
     24DATABASE_NAME = 'data.sqlite'   # Or path to database file if using sqlite3.
     25}}}
     26
     27{{{
     28urlpatterns = patterns('',
     29    # Example:
     30    # (r'^myproj/', include('myproj.foo.urls')),
     31
     32    # Uncomment this for admin:
     33    (r'^admin/', include('django.contrib.admin.urls')),
     34)
     35}}}
     36
    1137
    1238== 2. Ajoutons une activité ==
Back to Top