https://github.com/asgarzee/logistics-flow
It is a simple implementation of logistics order flow using django-fsm
https://github.com/asgarzee/logistics-flow
django django-fsm django-rest-framework finite-state-machine logging logistics-flow rest-framework swagger
Last synced: about 2 months ago
JSON representation
It is a simple implementation of logistics order flow using django-fsm
- Host: GitHub
- URL: https://github.com/asgarzee/logistics-flow
- Owner: asgarzee
- Created: 2017-12-03T11:43:42.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2022-12-07T23:50:47.000Z (over 3 years ago)
- Last Synced: 2025-03-09T21:53:06.359Z (over 1 year ago)
- Topics: django, django-fsm, django-rest-framework, finite-state-machine, logging, logistics-flow, rest-framework, swagger
- Language: Python
- Size: 16.6 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 7
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
Simple Implementation of logistics flow
---
We have separate APIs for all the states so that if we want to add more functionalities to each states in future.
#### Requirements
```sh
1. Python 3.5
2. Django 2.0
3. PostgresSQL 9.6
```
### Create Virtual Environment
Follow instructions at: *http://pypi.python.org/pypi/virtualenv*
### Install Requirements
```sh
pip install -r requirements/base.txt
```
### Run Migrations
```sh
python manage.py migrate
python manage.py loaddata initial_data
```
### Run Server
```sh
python manage.py runserver
```