File tree Expand file tree Collapse file tree 1 file changed +8
-3
lines changed Expand file tree Collapse file tree 1 file changed +8
-3
lines changed Original file line number Diff line number Diff line change @@ -163,6 +163,12 @@ Full tutorial [here](https://docs.djangoproject.com/en/dev/topics/install/).
163163
164164## Settings of Django CRM
165165
166+ For an initial introduction to the CRM, you can use the default settings.
167+ These include the use of an SQLite3 database, so there's no need to install any database.
168+
169+ > [ !WARNING]
170+ > SQLite3 is not suitable for regular CRM work. Use MySQL or PostgreSQL instead.
171+
166172Project settings are contained in files ` settings.py ` .
167173The main project settings are contained in the file
168174` webcrm/settings.py `
@@ -176,9 +182,8 @@ Most of the settings can be left at their default values.
176182The default settings are for running the project on a development server.
177183Change them for the production server.
178184
179- To start the project for the first time, it is enough to specify the ` DATABASES ` settings in the file
180- ` webcrm/settings.py `
181- But in the following, you will need to specify at least the ` EMAIL_HOST ` and ` ADMINS ` settings.
185+ To start using CRM regularly, specify the ` DATABASES ` settings in the ` webcrm/settings.py ` file
186+ and at least the ` EMAIL_HOST ` and ` ADMINS ` settings.
182187
183188### DATABASES settings
184189
You can’t perform that action at this time.
0 commit comments