Skip to main content

A CRM software using the django web framework

Project description

Creme is a free/open-source Customer Relationship Management software developed by Hybird (www.hybird.org).

It is designed with an entities/relationships architecture, and is highly configurable, which allows adapting Creme to many workflows.

Detailed view of a contact

It provides apps (i.e. modules) to manage:

  • Contacts & organisations.
  • Documents & folders.
  • Activities (meetings, phone calls, tasks...) with a calendar.
  • Products & services.
  • Invoices, quotes, sales orders & credit notes.
  • Opportunities.
  • Commercial actions.
  • Email campaigns.
  • Reports.
  • Tickets.
  • Alerts, todos & memos.
  • Geolocation.
  • ...

Lots of aspects can be configured through a graphical interface :

  • Detailed views for entities are built from blocks ; you can configure which blocks are displayed, you can create your own the blocks (chose the fields which are used)...
  • You can configure the columns of the list views (columns can be related to fields, custom-fields, relationships...), and filter the lines with powerful rules.
  • You can create your custom-fields, or hide existing fields.
  • You can choose which fields of forms are used, and group them like you want.
  • You can create your own types of relationship, adapted to your business.
  • ...

Creme has powerful tools to filter, search or import data. it provides a credential system with some cool features (teams, allow/forbid entities from a filter on fields/relationships, ...).

If you have very specific needs, Creme can also be used as a CRM framework to code your own CRM.

Creme is coded in Python, and uses the Django web framework (http://www.djangoproject.com/) and the JQuery javascript library (http://jquery.com/).

You can find more information on Creme on its official website: http://cremecrm.com/ You can ask your questions in our forum: https://www.cremecrm.com/forum/index.php (there is an english section)

Current translations

  • English (could probably be improved)
  • French

Recommendations:

It's recommended to use a database engine which supports transactions :

  • PostGreSQL is probably the best choice for databases with 100,000+ entities.
  • SQLite support is principally done for developers, but it remains a solution for small databases (e.g. a use as mono-user app with the server running of your computer).

You probably should use 'virtualenv' (for an upgrade from Creme 2.4, you should create a new virtual env, in order to keep the old one working).

Dependencies

  • Python 3.8+
  • MySQL 8+ (or MariaDB 10.4+) or PostGreSQL 12+ (or SQLite which is included with Python)
  • A web server compatible with Python, like Apache 2.4
  • Redis 3+
  • These Python packages : (exact versions of Python packages are indicated in the 'setup.cfg' file)
    • Mandatory :
      • Django
      • redis
      • python-dateutil
      • cryptography
      • bleach
      • Pillow
      • django-formtools
      • xlrd (to import contacts, organisations, activities, tickets... from xls files)
      • xlwt (to export all types of entities -- like contacts or organisations -- as xls files)
      • csscompressor
      • rJSmin
    • Optional :
      • creme.billing : If you want PDF export, you can use :
        • xhtml2pdf (default)
        • weasyprint (easy to install on Linux ; harder on Windows)
        • you can also use the binary "pdflatex" (Ubuntu package 'texlive-latex-base').

Installation with 'pip':

  • You should probably use "virtualenv".
  • To install Creme itself :
    • You can just install from pyPI: 'pip install creme-crm==2.5'
    • If you retrieved the source, you can use the following command at the source's root: 'pip install -e .'
  • About DB server :
    • If you use MySQL/MariaDB, you must add the 'mysql' flag : 'pip install creme-crm[mysql]==2.5' (or 'pip install -e .[mysql]' with the source).
    • For PostGreSQL, you must add the 'pgsql' flag : 'pip install creme-crm[pgsql]==2.5' (or 'pip install -e .[pgsql]' with the source).
    • SQLite doesn't require a specific flag (see RECOMMENDATIONS).
  • Notice some of these Python packages need system libraries to be installed. For example, here a list of Debian/Ubuntu packages you'll have to install before:
    • python-dev
    • mysql_config & libmysqlclient-dev (or libpq-dev if you want to use PostGreSQL)
    • redis-server
    • libjpeg-dev
    • libcairo-dev

Install

Global remarks:

  • You should know how to install/deploy a Django application.
  • Upgrade note: if you already have a Creme installation, upgrade the version one by one (e.g. do not try to upgrade from 2.0 to 2.2, upgrade to 2.1 and then 2.2).

Database configuration: For a new installation, you have to create a new database & a new DB user (who is allowed to create/drop tables, indices...). For an upgrade from the previous major version, back up your existing DB (of course you should back up regularly, even when you do not upgrade Creme...).

Project creation: For new installations AND for upgrades from Creme 2.4, create a new project ; with the virtualenv activated, use the following command which creates a new folder:

>> creme creme_start_project my_project

Settings: The newly created file "my_project/my_project/settings.py" gives all the information for a basic installation with the minimal information you must fill.

For an upgrade from the previous version of Creme :

  • See the section "UPGRADE NOTE" corresponding to the new version in the file CHANGELOG.txt.
  • Do not remove apps in INSTALLED_APPS during the upgrade (because they are installed in your DB) ; complete your installation & then uninstall apps you do not want anymore (see below).

Filling the DB tables & creating the static asset: You must be in the parent folder "my_project/" (i.e. not "my_project/my_project/"). Run the following commands (new installations AND upgrades from a previous version):

>> creme migrate --settings=my_project.settings
>> creme creme_populate --settings=my_project.settings
>> creme generatemedia --settings=my_project.settings

Note for MySQL users: you should load the time zone tables.

Launch

To run the development server, you just have to run this command:

>> creme runserver --settings=my_project.settings

You can then go to http://localhost:8000 & log in with root/root.

For a production deployment (Apache, Nginx...), you should read https://docs.djangoproject.com/en/3.2/howto/deployment/

In order to get a completely functional instance, the job manager must be launched (some features need it: sending emails campaign, CSV import...). To run it, use this command (in a production environment a watch dog is advised):

>> creme creme_job_manager --settings=my_project.settings

Uninstall apps

When you have a working installation, & want to remove an (optional) app, use the command 'creme_uninstall' which will clean the DB. When it's done, you can comment the app in local_settings.py

Contributing

The repository is using CircleCI and launch some linting tests. To check them locally before any commit or push you can use the hooks in '.githooks'. There are two ways to configure them:

Simply change git configuration (works with git 2.9+)

>> git config core.hooksPath .githooks

Or create symlink in '.git/hooks/'. Make sure the old one are moved or removed.

>> ln -s ../../.githooks/pre-commit .git/hooks/pre-commit
>> ln -s ../../.githooks/pre-push .git/hooks/pre-push

In order to run the JavaScript linter locally, you can install a NodeJS environment within your virtualenv thanks to the Python package nodeenv. In your virtualenv (named "mycremeenv"):

>> pip install nodeenv
>> nodeenv -n 14.20.0 -p    # to install nodejs 14.20.0 with "mycremeenv"
>> deactivate
>> workon mycremeenv
>> nodejs --version  # to check the installation is OK
>> make node-update  # Install nodejs requirements

Now you can run "make eslint" manually, and the pre-commit hook will check the new/modified files.

References

Creme CRM source code is available on the Creme CRM GitHub Repository.

Want to know more about Creme CRM ? Check out the Creme CRM Website.

Want to try Creme CRM ? Visit the Creme CRM Public Demo Website.

Want your own demo instance ? Pull the latest Creme CRM Demo Docker image on the Creme CRM DockerHub Repository.

Want to know more about our company ? Check out the Hybird Website.

Any other questions ? Need help ? Reach us on the Creme CRM Forums. Our (french) Video tutorials.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

creme-crm-2.5.7.tar.gz (24.0 MB view hashes)

Uploaded Source

Built Distribution

creme_crm-2.5.7-py3-none-any.whl (25.7 MB view hashes)

Uploaded Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page