Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/fylein/fyle-accounting-mappings
Backend infra to support all kinds of mappings in Fyle Accounting Integrations
https://github.com/fylein/fyle-accounting-mappings
team-integrations
Last synced: about 2 months ago
JSON representation
Backend infra to support all kinds of mappings in Fyle Accounting Integrations
- Host: GitHub
- URL: https://github.com/fylein/fyle-accounting-mappings
- Owner: fylein
- License: mit
- Created: 2020-03-19T11:10:32.000Z (almost 5 years ago)
- Default Branch: master
- Last Pushed: 2024-09-18T08:29:34.000Z (4 months ago)
- Last Synced: 2024-09-18T11:13:29.255Z (4 months ago)
- Topics: team-integrations
- Language: Python
- Size: 220 KB
- Stars: 0
- Watchers: 3
- Forks: 1
- Open Issues: 4
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Fyle Accounting Mappings
## Installation and Usage
Backend infra to support all kinds of mappings in Fyle Accounting Integrations
$ pip install fyle-accounting-mappings
In Django `settings.py` -
INSTALLED_APPS = [
'django.contrib.admin',
'django.contrib.auth',
'django.contrib.contenttypes',
'django.contrib.sessions',
'django.contrib.messages',
'django.contrib.staticfiles',
# Installed Apps
'rest_framework',
'corsheaders',
'fyle_rest_auth', # already existing reusable django app for authentication
'fyle_accounting_mappings', # new mapping infra app
# User Created Apps
'apps.users',
'apps.workspaces',
'apps.mappings',
'apps.fyle',
'apps.quickbooks_online',
'apps.tasks'
]Run migrations -
$ python manage.py migrate
To use -
from fyle_accounting_mappings.models import MappingSetting, Mapping, ExpenseTag, DestinationTag
# Operations with DB