Базовое веб-приложения сервиса, к которому подключаются остальные модули.
TonyKurts c92f5651d6 Merge branch 'unstable' | 1 year ago | |
---|---|---|
SharixAdmin | 1 year ago | |
bin | 1 year ago | |
core | 1 year ago | |
.gitattributes | 1 year ago | |
.gitignore | 1 year ago | |
README.md | 1 year ago | |
license-eng.md | 1 year ago | |
license-ru.md | 1 year ago | |
manage.py | 1 year ago | |
requirements.txt | 1 year ago |
The base Django project of a service web application to which other modules are connected.
Download or clone repository.
For the initial configuration, run:
After executing the installation script, the file core/_config.py will be copied to the core/config.py (only if core/config.py does not exist yet). It contains default settings of all modules and applications used in Django project in the form of classes, where each attribute represents one setting. These classes are then used to apply all the necessary settings inside their own configuration files using the setup() function.
For example, this is how all the customizations for Gunicorn are defined in the core/config.py file:
# core/config.py
class ConfigGunicorn:
bind = "127.0.0.1"
workers = 2
worker_class = "sync"
threads = 4
timeout = 30
max_requests = 1000
capture_output = True
And this is how these settings are applied in the core/gunicorn.py configuration file used when starting Gunicorn:
# core/gunicorn.py
from core.utils import setup
from core.config import ConfigGunicorn
setup(locals(), ConfigGunicorn)
This approach provides more convenient project configuration and allows you to store settings for development and production use.
To configure special settings, such as changing the database type or specifying domain names for deployment in production that do not match the default settings for the web application, make changes to the core/config.py file. If these changes later become necessary for the basic installation of the web application, they should also be made in core/_config.py.
To apply your own classes with configurations, follow the usage example above.
To start the web application on Unix, run bin/start.sh.