https://github.com/sanchistor/devsearch
Project to communicate with developers all over the world using Django
https://github.com/sanchistor/devsearch
api css django html postgresql python
Last synced: 2 months ago
JSON representation
Project to communicate with developers all over the world using Django
- Host: GitHub
- URL: https://github.com/sanchistor/devsearch
- Owner: Sanchistor
- Created: 2023-03-24T08:50:23.000Z (over 3 years ago)
- Default Branch: master
- Last Pushed: 2023-04-11T14:13:24.000Z (about 3 years ago)
- Last Synced: 2025-02-06T16:57:44.816Z (over 1 year ago)
- Topics: api, css, django, html, postgresql, python
- Language: CSS
- Homepage:
- Size: 1.29 MB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# DevSearch
Project to communicate with developers all over the world using Django
## Installation
1) Clone repository 'https://github.com/Sanchistor/DevSearch'
2) Create a virtual environment and activate
> - `pip install virtualenv`
> - `virtualenv envname`
> - `envname\scripts\activate`
3) cd into project `cd DevSearch`
4) `pip install -r requirements.txt`
5) `python manage.py runserver`
## DB-postgresql setup
1) Go to `devsearch/settings.py`
2) Find variable `DATABASES`
3) Change to your local variables
'NAME': 'Your name of DB',
'USER': 'User of DB',
'PASSWORD': 'Password of DB',
'HOST': 'localhost',
'PORT': '5432',
4) Run `python manage.py migrate` to apply migrations
5) Run `python manage.py createsuperuser` to create admin and go to http://127.0.0.1:8000/admin/