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 virtualenvvirtualenv envnameenvname\scripts\activate
- cd into project
cd DevSearch pip install -r requirements.txtpython 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 migrateto apply migrations -
Run
python manage.py createsuperuserto create admin and go to http://127.0.0.1:8000/admin/