Re: Missing manage.py & settings.py

2019-03-06 Thread Gil Obradors
For create it yourself from 0 El dj., 7 de març 2019, 01:05, lujate va escriure: > What purpose does startapp serve when you're only using a pip installed > app? > > > > On Wed, Mar 6, 2019, 11:12 AM ambesh chand shahi wrote: > >> You should first type django-admin startproject "your project

Re: Missing manage.py & settings.py

2019-03-06 Thread lujate
What purpose does startapp serve when you're only using a pip installed app? On Wed, Mar 6, 2019, 11:12 AM ambesh chand shahi You should first type django-admin startproject "your project name". > > Then if you are using python3 then type python3 manage.py startapp > "appname". > > After that

Re: Missing manage.py & settings.py

2019-03-06 Thread ambesh chand shahi
You should first type django-admin startproject "your project name". Then if you are using python3 then type python3 manage.py startapp "appname". After that include that app in settings.py in Installed apps. On Tue, 5 Mar 2019, 07:29 lujate, wrote: > I created a scratch project for R > I

Re: Document for creating Django project with postgresql

2019-03-06 Thread Asif Nasim
Hi Prabhu, You can follow up the django girls tutorial, by visiting their web page and there they will show you how to made a full working web project using postgreSQL and how to deploy them on heroku, Regards, Asif Nasim On Wed 6 Mar, 2019, 21:31 Prabakaran Balaji Hi All, > > Could anyone

Document for creating Django project with postgresql

2019-03-06 Thread Prabakaran Balaji
Hi All, Could anyone please share the document for creating a django project with postgresql db? It would be great if I get any example app along with that. Regards, Prabu -- You received this message because you are subscribed to the Google Groups "Django users" group. To unsubscribe from

Re: Providing help on a website (basic CMS for on-site site documentation)

2019-03-06 Thread Bernd Wechner
Derek, Not quite. I don't heaps at all. An About Page, a FAQ page, a Help page ... that's about it. It still sucks to high heaven to try and edit these HTML pages nicely in an external app, and then have to paste the HTML into a Django Admin box where the flatpage is stored. Surely, I

Re: migrating from sqlite to mysql breaks the site

2019-03-06 Thread Pedram Badakhchani
> > specifically in the get_absolute_url method. > I don't understand why this works fine with sqlite but breaks in mysql. thanks for any help. -- You received this message because you are subscribed to the Google Groups "Django users" group. To unsubscribe from this group and stop

migrating from sqlite to mysql breaks the site

2019-03-06 Thread Pedram Badakhchani
Hi All, I am currently going through Django 2 by Example Book by Antonio Melé. Unfortunately I have a problem with the source code provided on the associated git hub pages: https://github.com/PacktPublishing/Django-2-by-Example specifically in chapter 1 :

Re: Emails using django

2019-03-06 Thread Harryxon Ndegwa
Can u send a screenshot of your project directory structure showing the templates directory. That is where the problem is On Wed, 6 Mar 2019 12:57 pm raghav b I am trying to send emails with Django and calling a text file as the body > but it keeps throwing an error that the template can't be

Emails using django

2019-03-06 Thread raghav b
I am trying to send emails with Django and calling a text file as the body but it keeps throwing an error that the template can't be found. I have defined and imported templates correctly but is not working. Any ideas how I can make this work? Thanks. -- You received this message because you