Skip to content

Mohammed-Taysser/django-database-mobile-project

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

9 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

REQUIREMENTS

  1. python
  2. pip
  3. postgres

install pip in window python get-pip.py

INSTALLATION

1. git clone https://github.com/Mohammed-Taysser/django-database-mobile-project.git
2. cd django-database-mobile-project
3. pip install -r requirements.txt
4. python manage.py runsever

note

the database name is django_mobile_project so use should change the user name and password to your own one

you will find it on setting.py in mobile_project folder

django-database-mobile-project/
    manage.py
    mobile_project/
        __init__.py
        settings.py     <== here
        urls.py
        asgi.py
        wsgi.py
....

DATABASES = {
    'default': {
        'ENGINE': 'django.db.backends.postgresql',
        'NAME': 'django_mobile_project',
        'USER': 'postgres',
        'PASSWORD': 'root',
        'HOST': '127.0.0.1',
        'PORT': '5432',
    }
}
.... 

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published