Re: Mpesa integration.

2022-09-05 Thread FLAVIEN HERI
salut Mambo tu dois chercher leurs exigence dans la documentation On 9/5/22, Martin Mambo wrote: > Anyone whose successfully impilimented mpesa into django please help > > -- > You received this message because you are subscribed to the Google Groups > "Django users" group. > To unsubscribe from

Re: Mpesa integration.

2022-09-05 Thread Walid Kambagha
Have tried to check their documentation? On Mon, 5 Sep 2022 at 22:51, Martin Mambo wrote: > Anyone whose successfully impilimented mpesa into django please help > > -- > You received this message because you are subscribed to the Google Groups > "Django users" group. > To unsubscribe from this

More documentation needed - Channels with multiple authentication backends

2022-09-05 Thread Laurent De Buyst
Greetings, I've started using channels in an existing application (because IDOM requires it), which has two authentication backends (one local, one LDAP): AUTHENTICATION_BACKENDS = [ "django_auth_ldap.backend.LDAPBackend", "django.contrib.auth.backends.ModelBackend", ] This results in

Mpesa integration.

2022-09-05 Thread Martin Mambo
Anyone whose successfully impilimented mpesa into django please help -- You received this message because you are subscribed to the Google Groups "Django users" group. To unsubscribe from this group and stop receiving emails from it, send an email to django-users+unsubscr...@googlegroups.com.

Re: Mobile App

2022-09-05 Thread Awais Ikram
Use django rest api. You dont need to re write backend just make apis and on frontend use react js or swift On Mon, 5 Sep 2022, 2:34 AM Peter Kirieny, wrote: > Hello team Django, I have a fully functioning website > how can I easily turn it into a mob > app please ? > > -- > You received this

Re: Mobile App

2022-09-05 Thread gabrielstonedelza
I will recommend building with Django reatframework,that you will have an api you can serve to all points being mobile with flutter,web with react is or any other framework I have been building with mobile apps with flutter where the backend is Django restframeworkIf you are using the core

Re: Mobile App

2022-09-05 Thread Gobi Dasu
You need to make sure your Django app serves a REST API that your mobile client can use. You can do this with either Django or DRF (Django REST Framework). If you need help, here are people I'd recommend chatting with, you'll get a few hours of free credit where you can pick their brain:

Re: serving 206 Byte-Range during development

2022-09-05 Thread Jason
use gunicorn or uwsgi with autoreload https://docs.gunicorn.org/en/latest/settings.html?highlight=reload#reload https://uwsgi-docs.readthedocs.io/en/latest/Snippets.html?highlight=autoreload#python-auto-reloading-development-only On Monday, September 5, 2022 at 5:22:01 AM UTC-4 vjwork wrote: >

serving 206 Byte-Range during development

2022-09-05 Thread vjwork
I'm embedding jbrowse2 in a django site, but during development I get the following error Error: HTTP 200 (OK) when fetching /static/jbrowse/assembly/genome.fasta bytes 0-15871 (should be 206 for range requests)