Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

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

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
```