https://github.com/vkweb/gstr-reconciliation
A web application to reconcile GSTR-2B and purchase register's B2B invoices.
https://github.com/vkweb/gstr-reconciliation
gstin
Last synced: 5 months ago
JSON representation
A web application to reconcile GSTR-2B and purchase register's B2B invoices.
- Host: GitHub
- URL: https://github.com/vkweb/gstr-reconciliation
- Owner: vkWeb
- Created: 2022-01-06T13:17:41.000Z (over 4 years ago)
- Default Branch: main
- Last Pushed: 2022-03-07T06:03:37.000Z (over 4 years ago)
- Last Synced: 2024-12-30T06:33:56.084Z (over 1 year ago)
- Topics: gstin
- Language: Python
- Homepage:
- Size: 312 KB
- Stars: 1
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Reconcile
A web application to reconcile GSTR-2B and purchase register's B2B invoices. And then feed the
data to a google sheet via API.
## Development Setup
Python 3 and Linux recommended.
```bash
# Install pipenv globally.
$ pip install pipenv
# Create a virtual env.
$ pipenv --python 3
# Activate virtual env.
$ pipenv shell
# Install dependencies.
$ pipenv install --dev
# Run Django API server.
$ python manage.py runserver
```