The application is basically online service backend web application like multi vendor online service platform. Vendor will sell services or products and customer will taking the services or products.
- Python 3.8
- Celery 5.2.3
- postgres 12.5
The following steps will walk you thru installation on a Mac. Linux should be similar. It's also possible to develop on a Windows machine, but I have not documented the steps. If you've developed django apps on Windows, you should have little problem getting up and running.
psql -U postgres -W CREATE DATABASE bissasto
git clone https://github.com/mbrsagor/bishasto.git
cd bishasto
|--> .env_example
|--> .env
psql -U postgres -W
Run the application in your local development server:
virtualenv venv --python=python3.8
source venv/bin/activate
pip install -r requirements.txt
./manage.py makemigrations user
./manage.py migrate user
./manage.py migrate
./ manage.py migrate django_celery_results
./manage.py createsuperuser
./mangae.py runserver
Starting the worker process:
celery -A bishasto worker -l INFO
celery --help
Django Paypal Payment Gateway Integration with Working Example::