This is a Customer Relationship Management System designed for Warehouses. To get started just clone this repo and keep the following steps.
Development Version
- Change direction to the folder with docker-compose.yml file
- Run the command: docker-compose up -d --build
- Run the command: docker-compose exec web python3.6 manage.py migrate
- Create a superuser account with the command: docker-compose exec web python3.6 manage.py createsuperuser
- Browse to one of the following links: http://127.0.0.1:8005 http://localhost:8005
Production Version
- First of all, go to the settings.py file and change DEBUG option to False DEBUG = False
- Then change direction to the folder with docker-compose.yml file
- Run the command: docker-compose -f production.yml up -d --build
- Create a superuser account with the command: docker-compose -f production.yml exec web python3.6 manage.py createsuperuser. But be careful. If you see message about unapplied migrations, type Ctrl+C to exit from operation. Wait till project applied migrations automatically. After 15-20 seconds try to run the command again, and if there won't be any messages or warnings, create superuser account.
- Browse to one of the following links: http://127.0.0.1 http://localhost