Application Kitchen for Nobinobi
Project description
Application Kitchen for Nobinobi
Documentation
The full documentation is at https://nobinobi-kitchen.readthedocs.io.
Quickstart
Install Nobinobi Kitchen:
pip install nobinobi-kitchen
Add it to your INSTALLED_APPS:
INSTALLED_APPS = (
...
'phonenumber_field',
'crispy_forms',
'django_extensions',
'rest_framework',
'rest_framework.authtoken',
'rest_framework_datatables',
'menu',
'bootstrap_modal_forms',
'widget_tweaks',
'django_select2',
'bootstrap_datepicker_plus',
'nobinobi_core',
'nobinobi_staff',
'nobinobi_child.apps.NobinobiChildConfig',
'nobinobi_daily_follow_up.apps.NobinobiDailyFollowUpConfig',
'nobinobi_kitchen.apps.NobinobiKitchenConfig',
...
)
Add Nobinobi Kitchen’s URL patterns:
from nobinobi_core import urls as nobinobi_core_urls
from nobinobi_staff import urls as nobinobi_staff_urls
from nobinobi_child import urls as nobinobi_child_urls
from nobinobi_daily_follow_up import urls as nobinobi_daily_follow_up_urls
from nobinobi_kitchen import urls as nobinobi_kitchen_urls
urlpatterns = [
...
path('', include(nobinobi_core_urls)),
path('', include(nobinobi_staff_urls)),
path('', include(nobinobi_child_urls)),
path('', include(nobinobi_daily_follow_up_urls)),
path('', include(nobinobi_kitchen_urls)),
...
]
Features
TODO
Running Tests
Does the code actually work?
source <YOURVIRTUALENV>/bin/activate (myenv) $ pip install tox (myenv) $ tox
Development commands
pip install -r requirements_dev.txt invoke -l
Credits
Tools used in rendering this package:
History
0.1.0 (2021-09-24)
First release on PyPI.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
nobinobi-kitchen-0.1.0.tar.gz
(30.2 kB
view details)
File details
Details for the file nobinobi-kitchen-0.1.0.tar.gz
.
File metadata
- Download URL: nobinobi-kitchen-0.1.0.tar.gz
- Upload date:
- Size: 30.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.4.2 importlib_metadata/4.8.1 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.8.5
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | b0b27ba9d38b46717bd9dc351ae2f36f0522130dd9178e0f2270372b24a1e342 |
|
MD5 | b02d4ec4a93929233862fa8fc07bd637 |
|
BLAKE2b-256 | 5f009b1f7101ca6e36ba346eebf8d6515b59c3ebe40d808bb7e99acd7797f835 |