Re: error at deployment

2020-08-23 Thread Kasper Laudrup
Hi Sayur, On 22/08/2020 22.53, Sayur Patel wrote: hello i am beginner and this is my first project. Welcome to developing websites using Django. Hope you'll enjoy it. anything am i missing? You should probably let us know a bit about what Phusion Passenger is and how you have deployed

Re: error at deployment

2020-08-23 Thread MUGOYA DIHFAHSIH
Also that error comes about if you didn't create well the python application like maybe you missed the application root, or you didn't replace the code in your wsgi.py with this line. from myproject import application On Sun, Aug 23, 2020, 22:49 MUGOYA DIHFAHSIH wrote: > You are missing python

Re: error at deployment

2020-08-23 Thread MUGOYA DIHFAHSIH
You are missing python manage.py collectstatic, this is used to copy your static files to public fold so that they can be served by the server . On Sun, Aug 23, 2020, 02:14 Amresh Giri wrote: > Check logs bro. You'll know what went wrong and where. > > On Sun, Aug 23, 2020, 3:45 AM Sayur Patel

Re: error at deployment

2020-08-22 Thread Amresh Giri
Check logs bro. You'll know what went wrong and where. On Sun, Aug 23, 2020, 3:45 AM Sayur Patel wrote: > hello i am beginner and this is my first project. > > i have error on my home page. > > i do > >1. installing dependency >2. makemigrations >3. migrate >4. createsuperuser

error at deployment

2020-08-22 Thread Sayur Patel
hello i am beginner and this is my first project. i have error on my home page. i do 1. installing dependency 2. makemigrations 3. migrate 4. createsuperuser - setting.py - change static root - static dir - media root - allowed host - debug = false anyt