Legal CRM System in Malaysia is help the new law firm handle the client relationship and cases. Besides it also provide the basic analysis of the client and case. The system include create client, cases, invoice.
- Clone the git
git clone [repo]
- Create virtual environment
python -m venv env
- Install the dependencis
pip install -r requirements.txt
- Make migrations
python manage.py makemigrations
- Migrate to database
python manage.py migrate
- Run the program
python manage.py runserver
This is only use db.sqlite. If want use PostgreSQL it need to link the database under settings.py
DATABASES = {
"default": {
"ENGINE": "django.db.backends.postgresql_psycopg2",
"NAME": env("DB_NAME"),
"USER": env("DB_USER"),
"PASSWORD": env("DB_PASSWORD"),
"HOST": env("DB_HOST"),
"PORT": env("DB_PORT"),
}
}