Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/mosiahr/insurer
Accounting of insurance policies.
https://github.com/mosiahr/insurer
bootstrap4 django django-bootstrap4 django-filter django-rest-framework django-tables2 insurance twilio twilio-sms
Last synced: 9 days ago
JSON representation
Accounting of insurance policies.
- Host: GitHub
- URL: https://github.com/mosiahr/insurer
- Owner: mosiahr
- Created: 2020-12-13T11:30:39.000Z (almost 4 years ago)
- Default Branch: master
- Last Pushed: 2021-03-24T02:48:24.000Z (over 3 years ago)
- Last Synced: 2024-08-13T07:09:31.629Z (4 months ago)
- Topics: bootstrap4, django, django-bootstrap4, django-filter, django-rest-framework, django-tables2, insurance, twilio, twilio-sms
- Language: Python
- Homepage:
- Size: 216 KB
- Stars: 3
- Watchers: 4
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
- jimsghstars - mosiahr/insurer - Accounting of insurance policies. (Python)
README
# Insurer
The project has the ability to edit and save the result after calling to the customer.
Also, the app called "customer_service" allows use Django Rest Framework and Twilio.com for send SMS
messages to customers to notify them that insurance policy is ending.## Requirements
1. You must have [Docker](https://docs.docker.com/) and [Docker Compose](https://docs.docker.com/compose/) on your machine.
2. You must have your Account SID and your Auth Token from twilio.com/console. To do this, get ACCOUNT_SID and AUTH_TOKEN
from twilio.com and create .twilio.env file:
`touch .twilio.env`
Then add ACCOUNT_SID=your_sid and AUTH_TOKEN=your_token to him.## Clone and Run the development server
1. Clone this repo with command:
`git clone [email protected]:mosiahr/insurer.git && cd insurer`2. Create and start containers:
`docker-compose up -d`
3. Displays log output from services:
`docker-compose logs -f`
4. Display log output only from web service:
`docker-compose logs -f web`
5. Stop and remove containers, networks, images, and volumes:
`docker-compose down -v`