Project to communicate with developers all over the world using Django
- Clone repository 'https://github.com/Sanchistor/DevSearch'
- Create a virtual environment and activate
pip install virtualenv
virtualenv envname
envname\scripts\activate
- cd into project
cd DevSearch
pip install -r requirements.txt
python manage.py runserver
-
Go to
devsearch/settings.py
-
Find variable
DATABASES
-
Change to your local variables
'NAME': 'Your name of DB', 'USER': 'User of DB', 'PASSWORD': 'Password of DB', 'HOST': 'localhost', 'PORT': '5432',
-
Run
python manage.py migrate
to apply migrations -
Run
python manage.py createsuperuser
to create admin and go to http://127.0.0.1:8000/admin/