Skip to content

Simple CRM project to get familiar with Django framework.

Notifications You must be signed in to change notification settings

pawelzar/python-django-crm

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

18 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Django CRM

Dependencies:

To start this project, first create virtualenv using python3. You need to have venv module installed. Example command:

python3 -m venv env

To activate your local environment use this command (Windows):

env\Scripts\activate.bat

Now you can install all the requiremenets for the project. This should work:

python3 -m pip install -r requirements.txt

Running the website:

To run the website do as follows:

  1. Activate your local environment (if it is not activated already):
env\Scripts\activate.bat
  1. Apply migrations:
python3 manage.py migrate
  1. Create superuser:
python3 manage.py createsuperuser
  1. Run the server:
python3 manage.py runserver

By default, your website should be hosted at: http://127.0.0.1:8000/. Use login provided when creating superuser.

Additional tools:

If you want to exit local environment, then just put:

deactivate

About

Simple CRM project to get familiar with Django framework.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published