https://github.com/mbrsagor/realestate
Django, React, Redux, Docker, Celery, Redis, and NGINX - real estate web-app
https://github.com/mbrsagor/realestate
celery django docker ngnix python redis rest-framework
Last synced: 8 months ago
JSON representation
Django, React, Redux, Docker, Celery, Redis, and NGINX - real estate web-app
- Host: GitHub
- URL: https://github.com/mbrsagor/realestate
- Owner: mbrsagor
- Created: 2021-01-18T19:24:31.000Z (almost 5 years ago)
- Default Branch: master
- Last Pushed: 2022-08-26T14:49:11.000Z (about 3 years ago)
- Last Synced: 2025-01-12T13:25:24.147Z (10 months ago)
- Topics: celery, django, docker, ngnix, python, redis, rest-framework
- Language: Python
- Homepage:
- Size: 33.9 MB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# realestate
Django, React, Redux, Docker, Celery, Redis, and NGINX - real estate web-app
#### Setup
##### Dependencies
- Python 3.8
- Celery 5.2.3
- postgres 12.5
The following steps will walk you thru installation on a Mac. Linux should be similar. It's also possible to develop
on a Windows machine, but I have not documented the steps. If you've developed django apps on Windows, you should have little problem getting up and running.
###### 1st open in your system terminal then follow the command line.
```bash
git clone https://github.com/mbrsagor/realestate.git
cd realestate
```
###### Then copy code from the ``env_example`` and create new file `.env` then pasts
-------------------------------------------
```bash
|--> .env-sample
|--> .env
```
Run the application in your local development server:
```bash
virtualenv venv --python=python3.8
source venv/bin/activate
pip install -r requirements.txt
./manage.py makemigrations user
./manage.py migrate user
./manage.py migrate
./manage.py createsuperuser
./mangae.py runserver
```