Shreehari
i know mongodb is not a relational database, but how can approach this?
Andrej
What are the build tools available to build python code to binary code
You could let Jenkins create a Docker container with your Django project inside and deploy the container to a Server or Kubernetes. Where do you want to deploy you Django project to?
Andrej
Sorry to ask I am new I have an eccomerce project that I am working on how much will it take me to host it on aws pls need help
Is your question, how much time you need to learn to deploy your project to AWS? When you have studied something with computer science you will need a couple hours or a day. If you need to learn about command lines, linux, networking, ... it could take weeks.
Subroto
Anybody can help in resolving the below error
Subroto
Fatalerror: the application server could not be contacted
Subroto
While installing pgadmin4
Subroto
Do I have to install pgadmin 4 separately or should I use the pgadmin 4 which comes inbuilt with postgre SQL?
Subroto
I am just started to learn..
Subroto
Ok
Subroto
Subroto
Already done
Subroto
Same error...do I have to make any changes in the location where it's been installed?
Rajvir
Can anybody tell me from where should i learn abt creating bot in telegram using django?
Rajvir
Okay
Rajvir
Thanks
I'm
Hey how can I store values printed in browser console in my view
Rajvir
U mean Javascript to view file?
Ajitesh
Any one used oauth2???
Doragonsureiyā
Any one used oauth2???
Please don't ask meta questions like: "Any user of $x here?" "Anyone used technology $y?" "Hello I need help on $z" Just ask about your problem directly! With a very high amount of people here the probability that someone will help is pretty high. Also please read: http://catb.org/~esr/faqs/smart-questions.html
Andrej
When you work on multiple Django projects and you have to do the same things multiple times. How do you handle this? For example I'm planning 3+ Django projects. Everyone of them needs almost the same basic configuration with some changed parameters. For example all of them need to have: logging, mail, authentification (JWT+oAuth2), Newsletter, Registration+Login, captcha, push_notifications, storages, payments, ... How can you reduce the amount of work? How would you handle this? Maybe in one basic Git-Project and all other Django projects fork from it? Or maybe with a plugin, in which is find the basic configuration which could be customized (overwrite some parameters)? What would be a good way to do this?
George
Use django-cookiecutter
Andrej
Make a template for the whole project :)
Thanks, yes that could be one approach. What if I want to add a basic functonality to all of the projects? I would like to add something into the Parent codebase and all other django projects inherit from it and can overwrite the parameters. Is it possible with themes? Or is the theme just for the first initialization?
Andrej
template, not theme
Prantik
Can anyone help how to create a registration page using django in my project ( Online Bakery System)
Prantik
Like I have created one but the issue is that when I create an account through register the data gets stored upto that it's okay but the user which is logged cannot see the store page it's showing user has no customer
Dinesh
Hi, Does anyone have end to end project using python and reactjs?
Anonymous
Hello friends, pls I am working on a backend for an Android app and it's my first time. How can I make oauth2_provider generate both refresh and access token when I pass a user I'd and also how can I set the expiry time for the access token. Thank you all
Sai
You need to register your app on applications path with two keys
Anonymous
Please don't be annoyed, can you explain or send a link to a tutorial on how I can do that, I have no clue, it's my first time
Anonymous
Can anyone help me with how to ajax jquery to build single page application with json without using api
shekhar
has anyone deployed app on ibm cloud?
Anonymous
Yeah, sure
How to do that.. Any tutorial?
Anonymous
How to do that.. Any tutorial?
There are a lot of tutorials, like just search for Django AJAX.
Mr
Any roadmap for learn django
Mr
I have complete idea how django works How to work with models How to work with database
Mr
What is next step i can do in django please suggest me
Doragonsureiyā
What is next step i can do in django please suggest me
Looking for Django tutorials? you can follow these three recommended ones: * Official documentation and tutorial * Tutorial from MDN * Tutorial from django-girls
Andrej
What is next step i can do in django please suggest me
Choose a small simple project implement it and deploy it. You will go through many areas in Django in this process and you will learn a lot.
Vikas Singh
Hey guys I am begginer in django rest framework how can I learn from youtube any best channel
Vikas Singh
Please guide
Mr
But i dont know what can i do next.... Rest APIs or what
Mr
Code with harry or telusko !
Geeky shows also recommended
Vikas Singh
Okk rishav any other channels
Andrej
But i dont know what can i do next.... Rest APIs or what
What do you need? For which real world project are you preparing for? There is much more outside then you can ever learn. Focus on something useful and interesting for you.
Tavde_Nahi_Tabahi
Okk rishav any other channels
U can go through freecodecamp also
Mr
And my backend is django
Vikas Singh
Ok
Mr
So guide me what things to learn for this project
Andrej
So guide me what things to learn for this project
When I learnt Django. I had chosen a project and learnt everything what I need by doing. You will see what you need when you start with it. Learning by doing. Initialize the project Integrate a template Authentication, Logging, Maybe Celery Do a deployment Try to make migrations on your production DB ...
Doragonsureiyā
Please don't ask meta questions like: "Any user of $x here?" "Anyone used technology $y?" "Hello I need help on $z" Just ask about your problem directly! With a very high amount of people here the probability that someone will help is pretty high. Also please read: http://catb.org/~esr/faqs/smart-questions.html
Dexter
https://stackoverflow.com/questions/63052862/django-cms-update-function-not-working-as-intended
Dexter
Anyone check out this issue
maroong
I create a movie app with flutter
What kind of movie app? Explain
Mr
What kind of movie app? Explain
Movie app like....i want provide all the stuff of Netflix Amazon hotstar ect in freee freee freee
Mr
So i wanna build a movie app with flutter
maroong
Movie app like....i want provide all the stuff of Netflix Amazon hotstar ect in freee freee freee
Okay. You'll need a storage for the videos. You can try Amazon S3. You don't need Django to build an android app. If you want to use Django for the backend, you can search for Django rest framework and learn how to create an API. Then you'll use the API to show the data from your Django models in your flutter app.
Mr
For android i use flutter
maroong
Dinesh
Hi, I'm getting instance of 'onetoonefield' has no username member. Could someone pls help me
Anonymous
What's the model
Anonymous
Are you familiar with with the model doc ?
DTN
Hello, i'm trying to add an ValidationError after doing some validations in a MODELFORM, but had not succeded.
DTN
def clean(self): cleaned_data = super(HorariosDisponibles, self).clean() tutor = cleaned_data.get("tutor") dia_hor_inicio = cleaned_data.get("dia_hor_inicio") dia_hor_fin = cleaned_data.get("dia_hor_fin") if dia_hor_inicio and dia_hor_fin: if dia_hor_inicio.day != dia_hor_fin.day : msg = 'Las fechas no pueden ser distintas' self.add_error("dia_hor_inicio", msg) return cleaned_data
(USMON)$
Hello