An open API service indexing awesome lists of open source software.

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.

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
```