Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/kurianbenoy/biblerestapi


https://github.com/kurianbenoy/biblerestapi

Last synced: 23 days ago
JSON representation

Awesome Lists containing this project

README

        

## Bible Rest API

**Installation**

```
pip install pipenv

pipenv install
```

**MYSQL setup**

```
sudo apt-get install python3-dev libmysqlclient-dev

pipenv install mysqlclient

sudo apt-get install mysql-server
```

### Setup the mysql as the following

- Open MySQL shell
```
$ mysql -u -p
```
- Inside shell
```
>> create database character set utf8;
>> create user '@localhost' identified by ''
>> grant all on .* to ;
>> flush privileges;
>> exit
```

**Please note : I am using django-environ for hiding secrets in my settings.py .Check Project url for [setup](https://github.com/joke2k/django-environ)