File tree Expand file tree Collapse file tree 2 files changed +20
-0
lines changed Expand file tree Collapse file tree 2 files changed +20
-0
lines changed Original file line number Diff line number Diff line change @@ -43,6 +43,26 @@ $ python manage.py migrate --settings=root.settings.development
43
43
``` shell
44
44
$ python manage.py runserver --settings=root.settings.development
45
45
```
46
+
47
+ ** Create a new app**
48
+ ``` shell
49
+ $ cd apps
50
+ $ django-admin startpp < your_app_name>
51
+ ```
52
+
53
+ ** Register a newly created app**
54
+ - Go to [ roots/settings/base.py] ( https://github.com/alex1the1great/Django-Eye/blob/master/root/settings/base.py )
55
+ ``` python
56
+ USER_DEFINE_APPS = [
57
+ ' apps.<your_app_name>.apps.<your_app_name>Config' ,
58
+ ]
59
+ ```
60
+
61
+ - Go to apps/<your_app>/apps.py
62
+ - Change the app name to:
63
+ > name = 'apps.<your_app_name>'
64
+
65
+
46
66
## 🤝 Contributing
47
67
Contributions, issues and feature requests are welcome!
48
68
## ⭐️ Support
You can’t perform that action at this time.
0 commit comments