This is a repository that contains several Django based Web apps.
Since the Django apps are "portable", so I just commit the app folder as "app_name" (e.g., manbooks is a web application that allow user to manage their books).
- Clone this repo or the specific app you want.
- In your own Django environment, you can either put the app folder to your Django project or build up a new project for it.
- In your Django project folder, modify the
mysite/settings.py
, add the app toINSTALLED_APPS
. An example of adding the "manbooks" to your Django project is showed in follows.
INSTALLED_APPS = [
'your.other.apps',
'manbooks.apps.ManbooksConfig',
- Then you'd better migrate the app and database.
This work is follows the MIT License.
Please enjoy it :)