Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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 (about 7 years ago)
- Default Branch: master
- Last Pushed: 2022-12-07T23:50:47.000Z (about 2 years ago)
- Last Synced: 2023-03-09T03:17:08.949Z (almost 2 years 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: 2
- 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
```