Skip to content
/ crm Public

Temp repo for learning Python web development using Django framework

Notifications You must be signed in to change notification settings

ntokozodev/crm

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

40 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Create python virtualenv

-$ https://virtualenv.pypa.io/en/stable/userguide/#usage

Install requirements

-$ pip install -r requirements.txt

Make migrations and migrate

-$ python manage.py makemigrations -$ python manage.py migrate

Creating a superuser

-$ python manage.py createsuperuser

  • This is the user you will use to login to the app

Run the server

-$ python manage.py runserver