Re: Starting Django project with Docker

2022-09-28 Thread Kazuya Nomura
Please add me If you could please add my git account in your project. On Tuesday, September 27, 2022 at 7:41:37 AM UTC-7 amruth...@gmail.com wrote: > I really want to start with docker with atleast 2 to 5 guys > -- You received this message because you are subscribed to the Google Groups "Dja

Re: Starting Django project with Docker

2022-09-27 Thread 'Kasper Laudrup' via Django users
On 27/09/2022 11.35, Prabakaran Balaji wrote: Hello Folks, I tried to set the permission on app directory, but still facing the same problem. Any additional thoughts? Which permission did you set? It looks like you set the owner of the app directory to your user. Is your user the same as t

Re: Starting Django project with Docker

2022-09-26 Thread sham khan
--- > *From:* django...@googlegroups.com on behalf > of Yeboah Dominic > *Sent:* Monday, September 26, 2022 10:27:31 PM > *To:* django...@googlegroups.com > *Subject:* Re: Starting Django project with Docker > > I think you have to give that user permission. > Lik

Re: Starting Django project with Docker

2022-09-26 Thread Makrand
My number is+91 99301 02832 Get Outlook for Android<https://aka.ms/AAb9ysg> From: django-users@googlegroups.com on behalf of Yeboah Dominic Sent: Monday, September 26, 2022 10:27:31 PM To: django-users@googlegroups.com Subject: Re: Starting Django projec

Re: Starting Django project with Docker

2022-09-26 Thread Yeboah Dominic
I think you have to give that user permission. Like 'sudo chown -R root:root /home/dominic/app' or sudo chown -R dominic:dominic /home/dominic/app On Mon, 26 Sept 2022 at 08:12, Prabakaran Balaji wrote: > Hello Django Geeks, > > Looking for geeks' insight for docker related issues. I'm not ab

Re: Starting Django project with Docker

2022-09-26 Thread Makrand
I can handle cloud related work Get Outlook for Android From: django-users@googlegroups.com on behalf of Prabakaran Balaji Sent: Monday, September 26, 2022 5:41:30 PM To: django-users@googlegroups.com Subject: Starting Django project wit

Re: Starting Django

2022-07-15 Thread 【雷涵】Syed
Hi Manpreet, Assuming you need intermediate content for django. Check out these youtube channels: - Chuck Severance has a very thorough course, its also featured in freecodecamp - Codeforentrepreneur's "try django" series, - Very Academy Channel, - Matt layman channel - Just Django Channel N

Re: Starting Django

2022-07-14 Thread Lalit Suthar
https://github.com/lalit97/django-developer-resources On Fri, 15 Jul 2022 at 12:00, Lalit Suthar wrote: > https://www.youtube.com/playlist?list=PLEsfXFp6DpzTD1BD1aWNxS2Ep06vIkaeW > > On Fri, 15 Jul 2022 at 03:55, fawemimo olawale > wrote: > >> >> Dear All, >> You get a video a from brad Travers

Re: Starting Django

2022-07-14 Thread Lalit Suthar
https://www.youtube.com/playlist?list=PLEsfXFp6DpzTD1BD1aWNxS2Ep06vIkaeW On Fri, 15 Jul 2022 at 03:55, fawemimo olawale wrote: > > Dear All, > You get a video a from brad Traversy from Udemy or Mosh from > codewithmosh.com > Regards > > -- > You received this message because you are subscribed

Re: Starting Django

2022-07-14 Thread fawemimo olawale
Dear All, You get a video a from brad Traversy from Udemy or Mosh from codewithmosh.com Regards -- 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+uns

Re: Starting Django

2022-07-14 Thread Luiz Augusto Machado
You can try this: https://docs.djangoproject.com/en/4.0/intro/tutorial01/ Em qui., 14 de jul. de 2022 às 14:42, Manprit Singh < manpritsingh...@gmail.com> escreveu: > Hi all , > > Just need to know , from where to start learning this Django frame work . > I have considerable knowledge of Python

Re: Starting Django

2022-07-14 Thread Andrews Baffour Agyei
hello team mate, you can try a video tutorials with netninja.he is a great guy. On Thu, Jul 14, 2022 at 5:42 PM Manprit Singh wrote: > Hi all , > > Just need to know , from where to start learning this Django frame work . > I have considerable knowledge of Python programming language and little

Re: Starting Django

2022-07-14 Thread Kennedy Saavedra
Hi, I started to learn Django in a study app web. That is Platzi.com, now learn from the django documentation and youtube video. This is the link to documentation of Django: https://docs.djangoproject.com/en/4.0/ Greetings, success and blessings codeando. 😇 El jue., 14 de julio de 2022 12:42 p.

Re: Starting Django

2022-07-14 Thread Aadil Rashid
Just start learning from official django documentation On Thu, 14 Jul, 2022, 11:12 pm Manprit Singh, wrote: > Hi all , > > Just need to know , from where to start learning this Django frame work . > I have considerable knowledge of Python programming language and little > bit of using sqlite3 .

Re: starting django

2016-12-27 Thread roboslone
Server is obviously running, you wouldn't get Django-styled 404 page with your URLconf otherwise. The problem is you're trying to access /pOOls instead of /poLLs. > On 27 Dec 2016, at 17:18, kabangufut...@gmail.com wrote: > > Hello, > 1. check you server to see if is running by typing this in s

Re: starting django

2016-12-27 Thread kabangufuture
Hello, 1. check you server to see if is running by typing this in shell: python manage.py runserver On Thursday, December 22, 2016 at 6:32:08 PM UTC+2, Giovanni Oliverio wrote: > > > Hello, I'm following the guide at the following link: > https://docs.djangoproject.com/en/1.10/intro/tutorial01

Re: starting django

2016-12-27 Thread Giovanni Oliverio
ops ! Il giorno giovedì 22 dicembre 2016 17:34:20 UTC+1, Antonis Christofides ha scritto: > > You typed pools instead of polls in your browser. > > Antonis Christofideshttp://djangodeployment.com > > > On 12/22/2016 06:29 PM, Giovanni Oliverio wrote: > > > Hello, I'm following the guide at the f

Re: starting django

2016-12-22 Thread Antonis Christofides
You typed pools instead of polls in your browser. Antonis Christofides http://djangodeployment.com On 12/22/2016 06:29 PM, Giovanni Oliverio wrote: > > Hello, I'm following the guide at the following link: > https://docs.djangoproject.com/en/1.10/intro/tutorial01/ but when I go to call > the pag

Re: starting django

2016-12-22 Thread pradam programmer
just correct pools to polls in url On Thu, Dec 22, 2016 at 9:59 PM, Giovanni Oliverio wrote: > > Hello, I'm following the guide at the following link: > https://docs.djangoproject.com/en/1.10/intro/tutorial01/ but when I go to > call the page: http://localhost:8000/polls/ the result is the foll

Re: starting django

2012-03-19 Thread Willy
If you're learning Django and Python I think you're missing some prerequisite knowledge. I would really suggest you learn how to install both Python and Django on your own as well as working through this tutorial on Python so that you have at least a basic understanding of the language. http://docs

Re: starting django

2012-03-19 Thread Raphael Reumayr
hello Kikozzza, if you say ubuntu 10 I give a shot into the dark and tip on ubuntu version 10_04 LTS (long term support). After installation you can open a terminal an type: python the python console will open and responding with version Python 2.6.5 as this is the default version on ubuntu 10.04

Re: starting django

2012-03-19 Thread Marc Patermann
Kikozzza, Kikozzza schrieb (19.03.2012 07:00 Uhr): I'm starting learning django? that's why I ask my friend to install me python and all distrib for my projects. I have very silly question- how can I discover what version of python # python -V # man python "-V Prints the Python version numb

Re: starting django

2012-03-19 Thread Joel Goldstick
On Mon, Mar 19, 2012 at 2:00 AM, Kikozzza wrote: > I'm starting learning django? that's why I ask my friend to install me > python and all distrib for my projects. > I have very silly question- how can I discover what version of python > and  Django i get? > he installs me ubuntu 10 > > -- > You r