Lead Manager is Django-React app for managing your leads
- Create user
- Create Leads, View Leads and Delete Leads
Lead Manager uses a number of open source projects to work properly:
- React.js - A javascript library for building user interfaces.
- Redux - A predictable state container for JS apps - one source of truth.
- React-Redux - A library with React bindings for Redux.
- Axios - Promise based HTTP client for the browser.
- Booststrap - A css framework for designing webpages.
- Django - A python based backend framework for business logic.
- Django REST framework - A powerful flexible toolkit for building Web.
- django-rest-knox - An authentication module for django rest auth.
- PostgreSQL - An open source relational database
And of course Lead Manager itself is open source with a public repository on GitHub.
Dillinger requires Node.js v10+ to run. We will be using yarn package manager.
Clone the repo. Current directory: $
# Clone the github repo, you must have git installed locally
$ git clone https://github.com/isnakolah/lead_manager.git
Installation procedure for Mac and Linux based systems
Install the node dependencies and devDependencies. Current directory: $
# Change directory to the lead_manager base directory
$ cd lead_manager
# Install all the dependency
$ yarn add -d
Install the node dependencies and devDependencies. Current directory: $ lead_manager/
# Change the directory to the django lead_manager project
$ cd lead_manager/
# Initialize a python virtual environment
$ python -m venv .venv
# Activate the virtual environment
$ source .venv/bin/activate
# Install all the python packages
$ pip install -r requirements.txt
Use the .env-example in lead_manager/lead_manager/.env-example to configure your db
Open a seperate terminal in the base folder for this project $ lead_manager/
# In the base directory of the project, run the dev script
$ yarn run dev
In the terminal with path $ lead_manager/lead_manager/
# In the django project directory run the server to display the app
$ python manage.py runserver
Register a user to add and delete Leads.
MIT
Free Software, Hell Yeah!