https://github.com/apwhitehat/django-register
Mini web server for user registration on postgreSQL (made with help of Django)
https://github.com/apwhitehat/django-register
authentication django postgresql server
Last synced: about 2 months ago
JSON representation
Mini web server for user registration on postgreSQL (made with help of Django)
- Host: GitHub
- URL: https://github.com/apwhitehat/django-register
- Owner: APwhitehat
- Created: 2017-03-25T18:49:44.000Z (about 9 years ago)
- Default Branch: master
- Last Pushed: 2017-03-25T19:48:51.000Z (about 9 years ago)
- Last Synced: 2025-04-13T15:37:54.172Z (about 1 year ago)
- Topics: authentication, django, postgresql, server
- Language: Python
- Size: 13.7 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# django-register
Mini web server for user registration on postgreSQL (made with help of Django)
This was made to test/demonstrate remote user registration on postgreSQL .
I intend to use this to authenticate user in realtime.
### How to use
- Install and setup postgreSQL
- Make a database named
newdb(Owner = postgres_user) or change setting.py DATABASE info - git clone this repo
- Setup virtualenv as per your need
- Install django
- Run
python manage.py runserver
You may need to run
`python manage.py makemigrations` &
`python manage.py migrate`
to setup database migrations before `runserver`