Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/mhdir7an/erp
A web based ERP solution designed for businesses seeking seamless management of their operations. Manage Accounts, Product, Customers, Sales and much more with this application.
https://github.com/mhdir7an/erp
django django-rest-framework javascript nextjs reactjs supabase tailwindcss
Last synced: about 1 month ago
JSON representation
A web based ERP solution designed for businesses seeking seamless management of their operations. Manage Accounts, Product, Customers, Sales and much more with this application.
- Host: GitHub
- URL: https://github.com/mhdir7an/erp
- Owner: MhdIr7an
- Created: 2023-12-28T18:47:11.000Z (about 1 year ago)
- Default Branch: master
- Last Pushed: 2024-05-21T02:41:18.000Z (9 months ago)
- Last Synced: 2024-11-10T10:06:59.412Z (3 months ago)
- Topics: django, django-rest-framework, javascript, nextjs, reactjs, supabase, tailwindcss
- Language: JavaScript
- Homepage: https://erp-one-lovat.vercel.app
- Size: 443 KB
- Stars: 0
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# 🏪 ERP
Table of Contents
🔶 About The Project
🔹Features
🔹Modules
🔹Home Page
🔹Product Page
🔹Sales Page
🔶 Built With
🔶 Getting Started## 🚀 About The Project
A web based ERP solution designed for businesses seeking seamless management of their operations. The project includes invoice & report generation in pdf format. Manage Accounts, Product, Customers, Sales and much more with this application.### 💎 Features
🔹Multiple Unit Support
🔹Accounting Report
🔹Invoice Print
🔹Dynamically added table
🔹Shortcut keys### 📁 Modules
🔹category
🔹employee
🔹product
🔹customer
🔹vendor
🔹sales
🔹purchase
🔹sales return
🔹purchase return
🔹Quotation
🔹Preforma Invoice
🔹sales Order
🔹Delivery Note
🔹RFQ
🔹purchase Order
🔹Payment
🔹Receipt
🔹Chart Of Accounts
🔹Journal Voucher
🔹Petty CashHome Page
![]()
Product Page
![]()
Sales Page
![]()
## 🧰 Built With
Nextjs
Reactjs
Django
Docker
Supabase
Javascript
Tailwindcss
css
Html
## 🚪 Getting Started
To get a local copy up and running follow these simple steps:
1. Clone the repo
```sh
git clone https://github.com/MhdIr7an/ERP.git
```
Steps to follow if docker is installed:2. Run docker-compose build
```sh
docker-compose build
```
3. Run docker-compose up
```sh
docker-compose up
```Steps to follow if not using docker:
2. Navigate to frontend folder
```sh
cd frontend
```
3. Install dependencies
```sh
npm install
```
4. Run development server
```sh
npm run dev
```
5. Rename .env.example to .env and specify backend api url
6. Go back to root folder then navigate to backend folder
```sh
cd..
cd backend
```
7. Install requirements
```sh
pip install -r requirements.txt
```
8. Download and install WKHTMLTOPDF(required to generate pdf) from here and specify the path to wkhtmltopdf.exe
9. Rename .env.example file to .env then add SECRET_KEY(Your django secret key) and supabase database details.
10. run server
```sh
pip manage.py runserver
```