diff --git a/.gitmodules b/.gitmodules new file mode 100644 index 0000000..d8a04fc --- /dev/null +++ b/.gitmodules @@ -0,0 +1,3 @@ +[submodule "djing_flow"] + path = agent/netflow/djing_flow + url = git://github.com/nerosketch/djing_flow.git diff --git a/djing/settings_example.py b/djing/settings_example.py index 6529303..2c13787 100644 --- a/djing/settings_example.py +++ b/djing/settings_example.py @@ -87,13 +87,13 @@ WSGI_APPLICATION = 'djing.wsgi.application' DATABASES = { 'default': { - # 'ENGINE': 'django.db.backends.sqlite3', - #'NAME': os.path.join(BASE_DIR, 'db.sqlite3'), - 'ENGINE': 'django.db.backends.mysql', - 'NAME': 'djingdb', - 'USER': 'USER', # You can change the user name - 'PASSWORD': 'PASSWORD', # You can change the password - 'HOST': 'localhost' + 'ENGINE': 'django.db.backends.sqlite3', + 'NAME': os.path.join(BASE_DIR, 'db.sqlite3'), + #'ENGINE': 'django.db.backends.mysql', + #'NAME': 'djingdb', + #'USER': 'USER', # You can change the user name + #'PASSWORD': 'PASSWORD', # You can change the password + #'HOST': 'localhost' } }