Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/mishaa931/django-business-central-api-integration-and-celery
A Django app for integrating with the Business Central API, featuring RESTful APIs and Celery for background tasks. Manages customer data and handles data synchronization with best practices in API development and task processing.
https://github.com/mishaa931/django-business-central-api-integration-and-celery
business-central business-central-api-integration celery celery-beat celery-result django django-orm django-orm-crud django-rest-framework microsoft-business-central redis restful-api
Last synced: 3 days ago
JSON representation
A Django app for integrating with the Business Central API, featuring RESTful APIs and Celery for background tasks. Manages customer data and handles data synchronization with best practices in API development and task processing.
- Host: GitHub
- URL: https://github.com/mishaa931/django-business-central-api-integration-and-celery
- Owner: Mishaa931
- Created: 2024-08-28T06:08:49.000Z (4 months ago)
- Default Branch: main
- Last Pushed: 2024-09-02T05:36:02.000Z (4 months ago)
- Last Synced: 2024-10-31T12:46:45.510Z (about 2 months ago)
- Topics: business-central, business-central-api-integration, celery, celery-beat, celery-result, django, django-orm, django-orm-crud, django-rest-framework, microsoft-business-central, redis, restful-api
- Language: Python
- Homepage:
- Size: 3.99 MB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Django Business Central Integration
## Overview
A Django application designed to integrate with the Business Central API. This project includes RESTful APIs for managing customer data, Celery for asynchronous task processing, and custom functionalities for data synchronization.
## Features
- **RESTful APIs**: CRUD operations for customer data.
- **Celery Integration**: Background task processing for data synchronization.
- **Environment Configuration**: Secure management of sensitive settings using `.env`.## Installation
1. **Clone the Repository**
git clone https://github.com/Mishaa931/Django-Business-Central-API-Integration-and-Celery.git
cd django-business-central-integration
2. **Create and Activate a Virtual Environment**python -m venv venv
source venv/bin/activate # On Windows: venv\Scripts\activate3. **Create and Activate a Virtual Environment**
pip install -r requirements.txt
4. **Set Up Environment Variables**
Create a .env file in the root directory and add your configuration settings:SECRET_KEY=your_secret_key
DEBUG=True
ALLOWED_HOSTS=127.0.0.1,localhost
DB_NAME=your_db_name
DB_USER=your_db_user
DB_PASSWORD=your_db_password
DB_HOST=localhost
DB_PORT=5432
6. **Run Migrations**python manage.py migrate
7. **Start the Development Server**
python manage.py runserver
## Usage
* API Endpoints: Access the RESTful APIs at http://127.0.0.1:8000/api/.
* Celery Tasks: Use Celery for background tasks and data synchronization.