https://github.com/bikramai/online-accounting-website
"Online Insight Accounting" is a SaaS-based web application of an accounting consultancy. This platform enables users to manage their taxes through various subscription plans offered annually. Users can also book appointments for callbacks to receive more information before purchasing a subscription.
https://github.com/bikramai/online-accounting-website
bootstrap css django es6 html javascript mysql payment-gateway-integration postgresql python sqlite3
Last synced: 3 months ago
JSON representation
"Online Insight Accounting" is a SaaS-based web application of an accounting consultancy. This platform enables users to manage their taxes through various subscription plans offered annually. Users can also book appointments for callbacks to receive more information before purchasing a subscription.
- Host: GitHub
- URL: https://github.com/bikramai/online-accounting-website
- Owner: Bikramai
- Created: 2024-07-28T02:24:44.000Z (almost 2 years ago)
- Default Branch: master
- Last Pushed: 2024-07-28T02:28:03.000Z (almost 2 years ago)
- Last Synced: 2025-02-09T05:41:30.646Z (over 1 year ago)
- Topics: bootstrap, css, django, es6, html, javascript, mysql, payment-gateway-integration, postgresql, python, sqlite3
- Language: CSS
- Homepage:
- Size: 25.6 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
## How to run locally
### Prerequisites
- Python 3.6 or higher find it [here](https://www.python.org/downloads/)
- pip package manager is required to install the dependencies
- venv package is required to create a virtual environment
Clone the repository
```bash
git clone repo_url
```
Create a virtual environment
### LINUX
```bash
python3 -m venv venv
source venv/bin/activate
```
### WINDOWS
```bash
python -m venv venv
venv\Scripts\activate
```
Install the dependencies, Migrations and run the server
```bash
pip install -r requirements.txt
python manage.py makemigrations accounts admins website
python manage.py migrate
python manage.py runserver
```