Re: Is it Possible to run django locally without internet connection

2019-05-08 Thread Idris Adegbite
Alright, Thanks alot Mr Shashank, Really appreciate, will try it out now

On Wed, May 8, 2019 at 3:19 AM Shashank Singh 
wrote:

> Run server with command ./manage.py runserver 0:8000. 0 here tells that
> any one on the same network can access the project's urls like this.
> Suppose your laptop's ip is 10.0.0.156 so from your phone go to
> 10.0.0.156:8000/admin and you are connected to your django projects. You
> must be on the same network/lan. It may or may not have a working internet
> connection.
>
> On Tue, May 7, 2019, 9:18 PM Rob Gmail  wrote:
>
>> Yes you can.  I do it for an IOT device that we have using Django/python,
>> many times it does not have an Internet connection but runs fine.
>>
>> Rob
>> 203-671-6514
>> Sent from my mobile device, please excuse the typos.
>>
>> On May 7, 2019, at 11:38 AM, Idris Adegbite 
>> wrote:
>>
>> Good day guys, Please can i run django on laptop without internet
>> connection.
>>  if yes, Please kindly help me out with the procedures.
>>
>> I am having issues connecting my  phone and laptop and i dont want that
>> to slow down my learning.
>> Any help would be appreciated
>>
>> --
>> 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.
>> To post to this group, send email to django-users@googlegroups.com.
>> Visit this group at https://groups.google.com/group/django-users.
>> To view this discussion on the web visit
>> https://groups.google.com/d/msgid/django-users/809870ae-92a1-4881-96ae-838d9342ee0b%40googlegroups.com
>> 
>> .
>> For more options, visit https://groups.google.com/d/optout.
>>
>> --
>> 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.
>> To post to this group, send email to django-users@googlegroups.com.
>> Visit this group at https://groups.google.com/group/django-users.
>> To view this discussion on the web visit
>> https://groups.google.com/d/msgid/django-users/A015232A-FE14-4BA8-9C45-70E4C6CD6F23%40gmail.com
>> 
>> .
>> For more options, visit https://groups.google.com/d/optout.
>>
> --
> 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.
> To post to this group, send email to django-users@googlegroups.com.
> Visit this group at https://groups.google.com/group/django-users.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/django-users/CAD-d1sbsFh7TxOc-oDtDSnkEeDFkQV4xa26xMUaFLaP5Zo-Dow%40mail.gmail.com
> 
> .
> For more options, visit https://groups.google.com/d/optout.
>

-- 
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.
To post to this group, send email to django-users@googlegroups.com.
Visit this group at https://groups.google.com/group/django-users.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/CAN%3DhNM%2BE32WMhLo5FU3_JFu6j2Eo%3DQGdEveo-mg3FY4_cw%2BnsA%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


Re: Is it Possible to run django locally without internet connection

2019-05-07 Thread Julio Cojom
I strongly recommend install some web server like mod_wsgi-express,
guinicorn, openlitespeed to serve files, even if its local.

Regards.
Julio C.



El mar., 7 may. 2019 a las 9:46, Idris Adegbite ()
escribió:

> Good day guys, Please can i run django on laptop without internet
> connection.
>  if yes, Please kindly help me out with the procedures.
>
> I am having issues connecting my  phone and laptop and i dont want that to
> slow down my learning.
> Any help would be appreciated
>
> --
> 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.
> To post to this group, send email to django-users@googlegroups.com.
> Visit this group at https://groups.google.com/group/django-users.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/django-users/809870ae-92a1-4881-96ae-838d9342ee0b%40googlegroups.com
> 
> .
> For more options, visit https://groups.google.com/d/optout.
>

-- 
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.
To post to this group, send email to django-users@googlegroups.com.
Visit this group at https://groups.google.com/group/django-users.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/CAHRQUHk2P4J1G8QgR_4rYr%3DAn7wokHO-EBSz5J1UtUar3TrsPA%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


Re: Is it Possible to run django locally without internet connection

2019-05-07 Thread Shashank Singh
Run server with command ./manage.py runserver 0:8000. 0 here tells that any
one on the same network can access the project's urls like this. Suppose
your laptop's ip is 10.0.0.156 so from your phone go to
10.0.0.156:8000/admin and you are connected to your django projects. You
must be on the same network/lan. It may or may not have a working internet
connection.

On Tue, May 7, 2019, 9:18 PM Rob Gmail  wrote:

> Yes you can.  I do it for an IOT device that we have using Django/python,
> many times it does not have an Internet connection but runs fine.
>
> Rob
> 203-671-6514
> Sent from my mobile device, please excuse the typos.
>
> On May 7, 2019, at 11:38 AM, Idris Adegbite 
> wrote:
>
> Good day guys, Please can i run django on laptop without internet
> connection.
>  if yes, Please kindly help me out with the procedures.
>
> I am having issues connecting my  phone and laptop and i dont want that to
> slow down my learning.
> Any help would be appreciated
>
> --
> 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.
> To post to this group, send email to django-users@googlegroups.com.
> Visit this group at https://groups.google.com/group/django-users.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/django-users/809870ae-92a1-4881-96ae-838d9342ee0b%40googlegroups.com
> 
> .
> For more options, visit https://groups.google.com/d/optout.
>
> --
> 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.
> To post to this group, send email to django-users@googlegroups.com.
> Visit this group at https://groups.google.com/group/django-users.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/django-users/A015232A-FE14-4BA8-9C45-70E4C6CD6F23%40gmail.com
> 
> .
> For more options, visit https://groups.google.com/d/optout.
>

-- 
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.
To post to this group, send email to django-users@googlegroups.com.
Visit this group at https://groups.google.com/group/django-users.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/CAD-d1sbsFh7TxOc-oDtDSnkEeDFkQV4xa26xMUaFLaP5Zo-Dow%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


Is it Possible to run django locally without internet connection

2019-05-07 Thread Idris Adegbite
Good day guys, Please can i run django on laptop without internet 
connection.
 if yes, Please kindly help me out with the procedures.

I am having issues connecting my  phone and laptop and i dont want that to 
slow down my learning.
Any help would be appreciated

-- 
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.
To post to this group, send email to django-users@googlegroups.com.
Visit this group at https://groups.google.com/group/django-users.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/809870ae-92a1-4881-96ae-838d9342ee0b%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: Is it Possible to run django locally without internet connection

2019-05-07 Thread Rob Gmail
Yes you can.  I do it for an IOT device that we have using Django/python, many 
times it does not have an Internet connection but runs fine. 

Rob 
203-671-6514
Sent from my mobile device, please excuse the typos. 

> On May 7, 2019, at 11:38 AM, Idris Adegbite  wrote:
> 
> Good day guys, Please can i run django on laptop without internet connection.
>  if yes, Please kindly help me out with the procedures.
> 
> I am having issues connecting my  phone and laptop and i dont want that to 
> slow down my learning.
> Any help would be appreciated
> -- 
> 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.
> To post to this group, send email to django-users@googlegroups.com.
> Visit this group at https://groups.google.com/group/django-users.
> To view this discussion on the web visit 
> https://groups.google.com/d/msgid/django-users/809870ae-92a1-4881-96ae-838d9342ee0b%40googlegroups.com.
> For more options, visit https://groups.google.com/d/optout.

-- 
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.
To post to this group, send email to django-users@googlegroups.com.
Visit this group at https://groups.google.com/group/django-users.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/A015232A-FE14-4BA8-9C45-70E4C6CD6F23%40gmail.com.
For more options, visit https://groups.google.com/d/optout.