Skip to content

eniseirem/django_bookme

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

19 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

BookMe

A self bookmarking project for studying.

● You can search books, see the results.
● You can bookmark books that you like.
● You can list your bookmarks.
● You can go into details of your bookmarks.

Prerequisities / Technical Details

Django 2.2.3
Python 3.7
Mysqlclient 1.4.2
requests 2.22

Installing
You need to install Python 3.7. Django 2.2 and afterwards you need to install mysqlclient and requests.

In Ubuntu, Mint and Debian you can install Python 3 like this:

$ sudo apt-get install python3 python3-pip

For other Linux flavors, macOS and Windows, packages are available at

http://www.python.org/getit/

For Django you can use this line

$ pip install Django

You can find further information about Django

https://docs.djangoproject.com/en/2.2/topics/install/

Use the package manager pip to install mysqlclient and requests.

$ pip install mysqlclient
$ pip install requests

You'll also need internet connection for mysql server.


Database Informations
'NAME':'lyEBWxgVhU',
'USER': 'lyEBWxgVhU',
'PASSWORD': 'TJdReyYGjs',
'HOST': '37.59.55.185',
#'remotemysql.com'
'PORT': '3306'

IMPORTANT

For development at mybooklist/settings.py -> DEBUG must be set to TRUE
(It left as true)