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.10+
  • MySQL 8.0.11+ (or MariaDB 10.5+ but we do not advise you to use MariaDB because it regularly causes strange issues) or PostGreSQL 14+ 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)
      • openpyxl (to import & export as above but with xlsx 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 "latexmk" with "lualatex"; For example on Ubuntu you'll need these packages:
          • minimum: latexmk texlive-latex-base
          • for french templates: texlive-latex-recommended texlive-latex-extra texlive-fonts-extra texlive-lang-french

Installation with 'pip':

  • You should probably use "virtualenv".
  • To install Creme itself :
    • You can just install from pyPI: 'pip install creme-crm==2.X'
    • 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.X' (or 'pip install -e .[mysql]' with the source).
    • For PostGreSQL, you must add the 'pgsql' flag : 'pip install creme-crm[pgsql]==2.X' (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 a previous version, 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.

Note for MariaDB users: If you have an existing instance of Creme & you upgrade your MariaDB server to 10.7+, you have to convert all the UUID fields (which were just CharFields before MariaDB 10.7) to real UUID fields. TO BE COMPLETED.

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/5.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

>> 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


Release history Release notifications | RSS feed

This version

2.7.5

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.7.5.tar.gz (24.4 MB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

creme_crm-2.7.5-py3-none-any.whl (26.2 MB view details)

Uploaded Python 3

File details

Details for the file creme_crm-2.7.5.tar.gz.

File metadata

  • Download URL: creme_crm-2.7.5.tar.gz
  • Upload date:
  • Size: 24.4 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.10.19

File hashes

Hashes for creme_crm-2.7.5.tar.gz
Algorithm Hash digest
SHA256 92bd2933a047853d0dc199d44ec8227ece87ff5303803816e2c12ef4d6dc75b0
MD5 4e435fa95f45f5ec2a20c287c772e67e
BLAKE2b-256 384033315c7d33b0d05cd1a1b27394e27c62d5059736de04db04e7105d8cad92

See more details on using hashes here.

File details

Details for the file creme_crm-2.7.5-py3-none-any.whl.

File metadata

  • Download URL: creme_crm-2.7.5-py3-none-any.whl
  • Upload date:
  • Size: 26.2 MB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.10.19

File hashes

Hashes for creme_crm-2.7.5-py3-none-any.whl
Algorithm Hash digest
SHA256 dbf25ba7b8b84192d31e5a89b0214df41eb946a20cfd3d7ee645c9ea71b2c9d4
MD5 99be0b31c077e79b0c12a83b0eaeee91
BLAKE2b-256 d7d158e70f3b889eb87edb391103f308fa3ab8ae96f1d2ea91789fb47e403d79

See more details on using hashes here.

Supported by

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