Django project that matches refugees with local demand based on their location, allowing consumers to find help with everyday tasks .In addition, this project allows getting help with tasks that doesn't require a degree including cleaning, moving, delivery and handyman job.
This is a Django 2.0 project. use the following steps:
- Create a virtualenv
- Manually install Django and other dependencies
pip freeze > requirements.txt
django-admin startproject project .
./manage.py startapp rabbit_clone
.
To run this project in your development machine, follow these steps:
-
Create a virtualenv
-
Manually install Django
pip install django
. -
django-admin startproject rabbit_clone .
-
./manage.py startapp main
. -
Fork this repo and clone your fork:
https://github.com/aalkhulaifi/JobsforRefugees_Germany.git
-
Install dependencies:
pip install -r requirements.txt
-
Create a development database:
./manage.py migrate
-
If everything is alright, you should be able to start the Django development server:
./manage.py runserver
-
Open your browser and go to http://127.0.0.1:8000/main/home , you will see the home page.