Re: Question about makemigrations

2019-06-21 Thread Rob W
"Migrate is basically the old syncdb but it takes into account all the migrations made by makemigrations. You should run the command -migrate- after adding a new app under the INSTALLED APPS section in the settings.py file in order to synchronize the database state with your current set of

Djano rest api

2019-06-12 Thread Rob W
Hi all, I need to see a django rest api, with proper endpoint design - REST-ish by using paths, HTTP methods, response codes, JSONs, errors returned in JSON, Anyone have this already completed that I can take a look at? -- You received this message because you are subscribed to the Google

Re: could not connect to server: Connection refused Is the server running on host "localhost" (::1) and accepting TCP/IP connections on port 5432?

2019-05-16 Thread Rob W
First, you should not share your password to your server to anyone….thats very dangerous. Now anyone can log in to your server with nefarious intentions. Be more careful. But it sounds like something on the server is blocking your connection. > On May 16, 2019, at 8:57 AM, omar ahmed

Re: problems with mysql client

2019-05-12 Thread Rob W
M Rob Gmail <mailto:randmwhee...@gmail.com>> wrote: > Mac OS > > Rob > 203-671-6514 > Sent from my mobile device, please excuse the typos. > > On May 11, 2019, at 11:42 AM, Jorge Gimeno <mailto:jlgimen...@gmail.com>> wrote: > >> >> >&g

problems with mysql client

2019-05-11 Thread Rob W
for my django project, we are using mysql. no matter how i try to install it, python-mysqldb, or just pip install mysqlclient, it fails. i've installed mysqlconnector, i've tried everything. any suggestions ? Collecting mysqlclient Downloading

reporting

2019-05-09 Thread Rob W
whats the best web reporting tool to use that easy and will easily integrate with django ? -- 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

Need help with project

2019-05-08 Thread Rob W
There are a few of us in a group slack who are trying to build a working production django ap for reporting. We are looking for someone who really knows Django to guide us through this project. We are all really hoping that someone will be kind enough to guide us and help us build this app.

Re: django project

2019-05-06 Thread Rob W
e: > Send me the details.. > > On Mon 6 May, 2019, 8:04 PM Rob W, <mailto:randmwhee...@gmail.com>> wrote: > Yes, I’m a beginner too, but need to get it completed. The first piece > should not be too difficult. > > > >> On May 6, 2019, at 10

Re: django project

2019-05-06 Thread Rob W
Yes, I’m a beginner too, but need to get it completed. The first piece should not be too difficult. > On May 6, 2019, at 10:32 AM, fazal rehman wrote: > > Is it for beginners ? > > On Mon 6 May, 2019, 8:01 PM , > wrote: > I am looking for 2 people to work

Re: help with URLS.PY

2019-05-03 Thread Rob W
Sure. Here is my urls.py from django.conf.urls import url from django.contrib import admin from django.urls import path from vr_reporting_app.views import HomeView from vr_reporting_app.views import Local from vr_reporting_app.views import User from vr_reporting_app.views import School

Re: help with URLS.PY

2019-05-03 Thread Rob W
It does not, I changed the name, stil the same error > On May 2, 2019, at 8:23 PM, Abishek Goda wrote: > > > Hi, > >> >> As I said, the dashboard.html works, i just want another menu option to load >> the other html file. i have commented this out as it causes my app to break. > So the

Re: Unable to create the django_migrations table (ORA-00907: missing right parenthesis)

2019-04-27 Thread Rob W
Can you send a copy of your models.py or a copy/paste of the class that shows the error? > On Apr 27, 2019, at 4:41 PM, tossouwisdom wrote: > > django.db.migrations.exceptions.MigrationSchemaMissing: Unable to create the > django_migrations table (ORA-00907: missing right parenthesis) > >

problems with url and views - new to django

2019-04-21 Thread Rob W
setting up a new project. all good, loaded up the project on localhost. however, when creating a view then setting the url, it doesn't work. *urls.py* from django.contrib import admin from django.urls import path urlpatterns = [ path('admin/', admin.site.urls), path('hello/',