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/
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
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.
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.
The project is open to improvements and is accepting all useful contributions.
- 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
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.