Re: Help on Error while deploying a django app on render.

2023-08-25 Thread Peter Benjamin Ani
Where are you hosting? On Thu, 24 Aug 2023 at 22:37, ALINDA Fortunate wrote: > Hello family some help i have this error > > Aug 25 12:28:30 AM ImportError: Couldn't import Django. Are you sure it's > installed and available on your PYTHONPATH environment variable? Did you > forget to activate a

Re: Help on Error while deploying a django app on render.

2023-08-25 Thread ivan harold
Try following these https://www.freecodecamp.org/news/deploying-a-django-app-to-render/ On Friday, August 25, 2023 at 9:00:08 PM UTC+8 Abdulrahman Abbas wrote: > Are you using virtual environment? > > On Thu, Aug 24, 2023, 22:37 ALINDA Fortunate > wrote: > >> Hello fa

Re: Help on Error while deploying a django app on render.

2023-08-25 Thread ivan harold
https://www.freecodecamp.org/news/deploying-a-django-app-to-render/ On Friday, August 25, 2023 at 9:00:08 PM UTC+8 Abdulrahman Abbas wrote: > Are you using virtual environment? > > On Thu, Aug 24, 2023, 22:37 ALINDA Fortunate > wrote: > >> Hello family some help i have th

Re: Help on Error while deploying a django app on render.

2023-08-25 Thread Abdulrahman Abbas
Are you using virtual environment? On Thu, Aug 24, 2023, 22:37 ALINDA Fortunate wrote: > Hello family some help i have this error > > Aug 25 12:28:30 AM ImportError: Couldn't import Django. Are you sure it's > installed and available on your PYTHONPATH environment variable? Did you > forget to

Help on Error while deploying a django app on render.

2023-08-24 Thread ALINDA Fortunate
Hello family some help i have this error Aug 25 12:28:30 AM ImportError: Couldn't import Django. Are you sure it's installed and available on your PYTHONPATH environment variable? Did you forget to activate a virtual environment? Aug 25 12:28:30 AM ==> Build failed 😞 Yet this is my requirements

Re: Deploying a Django App on GitHub Pages with the aid of Firebase

2017-01-02 Thread Vijay Khemlani
Github pages is only for static files, so no, unless your application only consists of static html files (in which case you woudn't be using django) On 1/2/17, Mostafa Elgayar wrote: > Is it possible to deploy a Django Application on GitHub pages, by having > the backend on Firebase for example a

Deploying a Django App on GitHub Pages with the aid of Firebase

2017-01-02 Thread Mostafa Elgayar
Is it possible to deploy a Django Application on GitHub pages, by having the backend on Firebase for example and retrieving data using Angular.js which would be deployed on GitHub as something static? If anyone could help me with some steps, I'd be so grateful. -- You received this message beca

Re: Deploying a Django App

2008-05-30 Thread Justin Lilly
Typically. Especially on slow work days ;) On Fri, May 30, 2008 at 1:58 PM, c0mrade <[EMAIL PROTECTED]> wrote: > > Ok cool, thanks. > > I guess I'm just used to standard deployments in Java and PHP > including the framework code in the site bundle. > > Thanks for the help guys, is it always so ac

Re: Deploying a Django App

2008-05-30 Thread Michael Wieher
That and you'll have to check where Apache's, I think its either "ServerRoot" or "WebRoot" or some such variable is set... but you have probably either inferred this already (if you tested mod_python) or looked it up yourself. On Fri, May 30, 2008 at 12:53 PM, Justin Lilly <[EMAIL PROTECTED]> wro

Re: Deploying a Django App

2008-05-30 Thread c0mrade
Ok cool, thanks. I guess I'm just used to standard deployments in Java and PHP including the framework code in the site bundle. Thanks for the help guys, is it always so active? :) On May 30, 1:53 pm, "Justin Lilly" <[EMAIL PROTECTED]> wrote: > You'll also need to have a way to serve admin medi

Re: Deploying a Django App

2008-05-30 Thread Justin Lilly
You'll also need to have a way to serve admin media files and normal media files. Beyond that, that should be about it. -justin On Fri, May 30, 2008 at 1:52 PM, c0mrade <[EMAIL PROTECTED]> wrote: > > Yes, sorry, I'm planning on using Apache with mod_python. > > Once I have installed Django, and

Re: Deploying a Django App

2008-05-30 Thread c0mrade
Yes, sorry, I'm planning on using Apache with mod_python. Once I have installed Django, and configured Apache with mod_python - what do I do with the code in the project folder I've been building? Say my project was called "djangoproject". Would I simply add the "/path/to/djangoproject" to PYTH

Re: Deploying a Django App

2008-05-30 Thread Karen Tracey
On Fri, May 30, 2008 at 1:30 PM, c0mrade <[EMAIL PROTECTED]> wrote: > > I'm really new do Django and coming from a Java/Php background. > > In php when you deploy an app, you have the whole structure and you > set the web root to the public folder, which contains the bootstrap. > In Java you just

Re: Deploying a Django App

2008-05-30 Thread Michael Wieher
It requires a familiarity with whatever web-server you run, usually Apache, for the sake of argument, I'll assume Apache. So, the tutorial discusses customizing your httpd.conf file tags quite a bit. Its up to you to bridge that gap between these parameters that Django's tutorial describes, an

Deploying a Django App

2008-05-30 Thread c0mrade
I'm really new do Django and coming from a Java/Php background. In php when you deploy an app, you have the whole structure and you set the web root to the public folder, which contains the bootstrap. In Java you just make a war file and drag it into your application server. How do you deploy a