Re: Django create username and password, please help!

2019-06-26 Thread nitish kumar
Hi Jackeline ... Are you able to start the server using (python manage.py runserver) if yes you can create super user using below command python manage.py createsuperuser after giving username and password navigate to below URL http://localhost:8000/admin/ and use the superuser credentials to lo

Re: Stuck with Django on a Synology Diskstation

2020-03-02 Thread nitish kumar
Hi MH, what flavour of Linux you are using. if it is centos/redhat you can use below steps. $sudo yum install httpd24-devel.x86_64 gcc git $sudo python3.5 -m pip install mod-wsgi once installed you need to add site configuration and permissions to your Django code. $ cd ~/django_a

angular setup for django (routes not working)

2019-12-26 Thread nitish kumar
Hi I am trying to integrate angular8 with Django (2.2.4). *Django side*: URL and view will load angular 'index.html' *angular:* some router-links. based on URL pattern page is getting loaded. *problem statement:* *if host only angular code using 'ng serve' router-link only load's partic

Re: angular setup for django (routes not working)

2019-12-29 Thread nitish kumar
: > > you doing something strange. > usually, when you want to setup angluar with django, you just using `ng > serve` to handle all the interface, and just use django for data and api. > it's not a good idea to render angular app with django > > On Thursday, December 26, 2019 a