Blood Bank Management system with Django and React.
Clone the repository
git clone https://github.com/mominur774/blood-bank-management.git # https
# or
git clone git@github.com:mominur774/blood-bank-management.git # ssh
Setup
.env
DEBUG=
SECRET_KEY=
Install dependency
pip install -r requirements.txt
Migrate database and create superuser
python manage.py migrate
python manage.py createsuperuser
Run the server
python manage.py runserver
You will get all the api endpoints by hitting this url : http://127.0.0.1:8000/api-docs/
Setup
.env.local
NEXT_PUBLIC_APP_API_URL=http://127.0.0.1:8000/
Install dependency
npm i
# or
yarn
Run the server
npm run dev
# or
yarn run dev
Your app will run on http://localhost:3000/