https://github.com/bikramai/omni-group-web-app
Omni Group is an innovative web application for a construction company specializing in the sale of apartments and lands. This website serves as a comprehensive platform showcasing available apartments, their prices, images, location on Google Maps, and detailed project information.
https://github.com/bikramai/omni-group-web-app
api bootstrap css django django-framework es6 google-maps-api html javascript postgresql python
Last synced: 3 months ago
JSON representation
Omni Group is an innovative web application for a construction company specializing in the sale of apartments and lands. This website serves as a comprehensive platform showcasing available apartments, their prices, images, location on Google Maps, and detailed project information.
- Host: GitHub
- URL: https://github.com/bikramai/omni-group-web-app
- Owner: Bikramai
- License: mit
- Created: 2024-07-27T18:18:12.000Z (almost 2 years ago)
- Default Branch: master
- Last Pushed: 2024-07-27T18:22:22.000Z (almost 2 years ago)
- Last Synced: 2025-04-03T17:15:21.878Z (over 1 year ago)
- Topics: api, bootstrap, css, django, django-framework, es6, google-maps-api, html, javascript, postgresql, python
- Language: HTML
- Homepage:
- Size: 33.7 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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 website admins
python manage.py migrate
python manage.py runserver
```