=============================
Nobinobi Kitchen
=============================
.. image:: https://badge.fury.io/py/nobinobi-kitchen.svg
:target: https://badge.fury.io/py/nobinobi-kitchen
.. image:: https://travis-ci.com/prolibre-ch/nobinobi-kitchen.svg?branch=master
:target: https://travis-ci.com/prolibre-ch/nobinobi-kitchen
.. image:: https://codecov.io/gh/prolibre-ch/nobinobi-kitchen/branch/master/graph/badge.svg
:target: https://codecov.io/gh/prolibre-ch/nobinobi-kitchen
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`:
.. code-block:: python
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:
.. code-block:: python
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:
* Cookiecutter_
* `cookiecutter-djangopackage`_
.. _Cookiecutter: https://github.com/audreyr/cookiecutter
.. _`cookiecutter-djangopackage`: https://github.com/pydanny/cookiecutter-djangopackage
History
-------
0.1.1 (2024-03-12)
++++++++++++++++++
* e92db8d - Fix error in view
* 416ad82 - fix for new version of django bootstrap picker
* 2f93d48 - Add FR translation to git
0.1.0 (2021-09-24)
++++++++++++++++++
* First release on PyPI.
Raw data
{
"_id": null,
"home_page": "https://github.com/prolibre-ch/nobinobi-kitchen",
"name": "nobinobi-kitchen",
"maintainer": "",
"docs_url": null,
"requires_python": "",
"maintainer_email": "",
"keywords": "nobinobi-kitchen",
"author": "Florian Alu",
"author_email": "alu@prolibre.com",
"download_url": "https://files.pythonhosted.org/packages/5f/48/93bc08084c5326a3a395330869a38b985ce0323b88e1b1df7d76ae7ff5f9/nobinobi-kitchen-0.1.1.tar.gz",
"platform": null,
"description": "=============================\nNobinobi Kitchen\n=============================\n\n.. image:: https://badge.fury.io/py/nobinobi-kitchen.svg\n :target: https://badge.fury.io/py/nobinobi-kitchen\n\n.. image:: https://travis-ci.com/prolibre-ch/nobinobi-kitchen.svg?branch=master\n :target: https://travis-ci.com/prolibre-ch/nobinobi-kitchen\n\n.. image:: https://codecov.io/gh/prolibre-ch/nobinobi-kitchen/branch/master/graph/badge.svg\n :target: https://codecov.io/gh/prolibre-ch/nobinobi-kitchen\n\nApplication Kitchen for Nobinobi\n\nDocumentation\n-------------\n\nThe full documentation is at https://nobinobi-kitchen.readthedocs.io.\n\nQuickstart\n----------\n\nInstall Nobinobi Kitchen::\n\n pip install nobinobi-kitchen\n\nAdd it to your `INSTALLED_APPS`:\n\n.. code-block:: python\n\n INSTALLED_APPS = (\n ...\n 'phonenumber_field',\n 'crispy_forms',\n 'django_extensions',\n 'rest_framework',\n 'rest_framework.authtoken',\n 'rest_framework_datatables',\n 'menu',\n 'bootstrap_modal_forms',\n 'widget_tweaks',\n 'django_select2',\n 'bootstrap_datepicker_plus',\n 'nobinobi_core',\n 'nobinobi_staff',\n 'nobinobi_child.apps.NobinobiChildConfig',\n 'nobinobi_daily_follow_up.apps.NobinobiDailyFollowUpConfig',\n 'nobinobi_kitchen.apps.NobinobiKitchenConfig',\n ...\n )\n\nAdd Nobinobi Kitchen's URL patterns:\n\n.. code-block:: python\n\n from nobinobi_core import urls as nobinobi_core_urls\n from nobinobi_staff import urls as nobinobi_staff_urls\n from nobinobi_child import urls as nobinobi_child_urls\n from nobinobi_daily_follow_up import urls as nobinobi_daily_follow_up_urls\n from nobinobi_kitchen import urls as nobinobi_kitchen_urls\n\n\n urlpatterns = [\n ...\n path('', include(nobinobi_core_urls)),\n path('', include(nobinobi_staff_urls)),\n path('', include(nobinobi_child_urls)),\n path('', include(nobinobi_daily_follow_up_urls)),\n path('', include(nobinobi_kitchen_urls)),\n ...\n ]\n\nFeatures\n--------\n\n* TODO\n\nRunning Tests\n-------------\n\nDoes the code actually work?\n\n::\n\n source <YOURVIRTUALENV>/bin/activate\n (myenv) $ pip install tox\n (myenv) $ tox\n\n\nDevelopment commands\n---------------------\n\n::\n\n pip install -r requirements_dev.txt\n invoke -l\n\n\nCredits\n-------\n\nTools used in rendering this package:\n\n* Cookiecutter_\n* `cookiecutter-djangopackage`_\n\n.. _Cookiecutter: https://github.com/audreyr/cookiecutter\n.. _`cookiecutter-djangopackage`: https://github.com/pydanny/cookiecutter-djangopackage\n\n\n\n\nHistory\n-------\n\n0.1.1 (2024-03-12)\n++++++++++++++++++\n\n* e92db8d - Fix error in view\n* 416ad82 - fix for new version of django bootstrap picker\n* 2f93d48 - Add FR translation to git\n\n0.1.0 (2021-09-24)\n++++++++++++++++++\n\n* First release on PyPI.\n\n\n",
"bugtrack_url": null,
"license": "",
"summary": "Application Kitchen for Nobinobi",
"version": "0.1.1",
"project_urls": {
"Homepage": "https://github.com/prolibre-ch/nobinobi-kitchen"
},
"split_keywords": [
"nobinobi-kitchen"
],
"urls": [
{
"comment_text": "",
"digests": {
"blake2b_256": "c39db070e5eea0a817d9c99180d71601e9cef79bda1d0a5d82393826fda4283c",
"md5": "2f7bd8cbced9b677a645fa112da920da",
"sha256": "907e7bf750baddb607d8ea2110aa921e705ec4e40397dbf51b222efbaf52428f"
},
"downloads": -1,
"filename": "nobinobi_kitchen-0.1.1-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "2f7bd8cbced9b677a645fa112da920da",
"packagetype": "bdist_wheel",
"python_version": "py2.py3",
"requires_python": null,
"size": 36062,
"upload_time": "2024-03-12T17:12:11",
"upload_time_iso_8601": "2024-03-12T17:12:11.140672Z",
"url": "https://files.pythonhosted.org/packages/c3/9d/b070e5eea0a817d9c99180d71601e9cef79bda1d0a5d82393826fda4283c/nobinobi_kitchen-0.1.1-py2.py3-none-any.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "5f4893bc08084c5326a3a395330869a38b985ce0323b88e1b1df7d76ae7ff5f9",
"md5": "10f2183bd620ff18d009b4b593767e38",
"sha256": "73ca525943fcbb7a8a1b680807a52407470e2d74969f9f1239cbbc73dfa59892"
},
"downloads": -1,
"filename": "nobinobi-kitchen-0.1.1.tar.gz",
"has_sig": false,
"md5_digest": "10f2183bd620ff18d009b4b593767e38",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 30407,
"upload_time": "2024-03-12T17:12:13",
"upload_time_iso_8601": "2024-03-12T17:12:13.495813Z",
"url": "https://files.pythonhosted.org/packages/5f/48/93bc08084c5326a3a395330869a38b985ce0323b88e1b1df7d76ae7ff5f9/nobinobi-kitchen-0.1.1.tar.gz",
"yanked": false,
"yanked_reason": null
}
],
"upload_time": "2024-03-12 17:12:13",
"github": true,
"gitlab": false,
"bitbucket": false,
"codeberg": false,
"github_user": "prolibre-ch",
"github_project": "nobinobi-kitchen",
"travis_ci": true,
"coveralls": true,
"github_actions": false,
"requirements": [],
"tox": true,
"lcname": "nobinobi-kitchen"
}