Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/turulomio/django_vipcontacts
Backend of Vip Contacts. Another way to manage personal contacts
https://github.com/turulomio/django_vipcontacts
contacts contacts-app contacts-birthday contacts-management contacts-manager
Last synced: 6 days ago
JSON representation
Backend of Vip Contacts. Another way to manage personal contacts
- Host: GitHub
- URL: https://github.com/turulomio/django_vipcontacts
- Owner: turulomio
- License: gpl-3.0
- Created: 2021-03-27T04:48:09.000Z (almost 4 years ago)
- Default Branch: main
- Last Pushed: 2024-03-04T20:14:19.000Z (10 months ago)
- Last Synced: 2024-03-05T07:21:36.030Z (10 months ago)
- Topics: contacts, contacts-app, contacts-birthday, contacts-management, contacts-manager
- Language: Python
- Homepage:
- Size: 254 KB
- Stars: 3
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# django_vipcontacts
Django project that serves an API to VipContacts (https://github.com/turulomio/vipcontacts) to manage your contacts in a different way
## Links
Doxygen documentation:
http://turulomio.users.sourceforge.net/doxygen/django_vipcontacts/Github web page:
https://github.com/turulomio/django_vipcontacts/## Dependencies
* Django
* Django rest frameworkds
* Django CORS headers## Issues
If you have any issues with this project, please report then in the frontend project https://github.com/turulomio/vipcontacts/issues
## Installation
### Using python manage.py runserver1) Install following packages with pip
```
pip install django-cors-headers
pip install djangorestframework
```
2) Change your database settings pointing to a new database in django_vipcontacts/settings.py
3) Create your database ( I use postgres, the rest of databases hasn't been tested )
4) Clone this project and enter main directory
5) `python manage.py migrate`
6) `python manage.py runserver 8002`
7) `python manage.py createsuperuser`
8) Open http://127.0.0.1:8002/ in your browser and you'll see Vip Contacts API. You can change ports but you'll have to configure both frontend and backend CORS settingsNOW YOU HAVE TO INSTALL VIPCONTACTS FROM (https://github.com/turulomio/vipcontacts)
## Changelog
### 0.3.0 (2021-04-23)
- Added chips to search model
- Added more relation types
- Added more necessary views