Skip to content

AnimeshRy/ForceSales

Repository files navigation

ForceSales

Website shields.io GitHub license

CRM Build with Django 3 and PostgreSQL

ForceSales is a Customer relationship management software and is not a copy of any existing out there.

It does sound like one though

Website - https://forcethosesales.herokuapp.com/

Website Image

Features

ForceSales have all the basic features implemented as you'd find in any other existing CRM.

  • CRUD Leads, Agent & Categories
  • Segment Leads into Categories
  • Attach Agents to Leads
  • Agents User Login and Manage Leads

Backend

ForceSales Uses Django 3 as the backend which manages everything - routes, auth, static files etc.

DB - The deployed project uses PostgreSQL as the primary database.

Frontend

ForceSales uses Tailwind as the CSS frontend framework. The project uses cdn's instead of static npm package.

The project also utilizes these tailwind blocks as prepared frontend blocks.

Pull Requests

The project is open to improvements and is accepting all useful contributions.

To Contribute

  • The project has two branches - master and develop.
  • To contribute, use the develop branch and i'll see if I can moderate those changes to the master branch.

Note - The develop branch still uses SQLite3 as the main db

Clone

You can clone the master branch but you'll need a DB setup and some setting.py changes, it's better to switch to the develop branch.

git clone https://github.com/AnimeshRy/ForceSales.git
cd ForceSales
git checkout develop
pip install -r requirements.txt

touch .env
# generate secret key
echo "SECRET_KEY=generated_secret_key" >> .env

python manage.py migrate 
python manage.py runserver

You can deploy this app yourself to Heroku to play with.

Deploy