Welcome to Symbion! Symbion is a CRM (Customer Relationship Management) web application designed to help you manage your records effectively.
-
Create and Activate a Virtual Environment
python3 -m venv env source env/bin/activate # Unix/Mac env\Scripts\activate # Windows
python3 -m venv env- Install dependencies
pip install -r requirements.txt- Make database migrations
python3 manage.py makemigrationsthen
python3 manage.py migrate- Run server cd symbion
python3 manage.py runserver