Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/kurianbenoy/biblerestapi
https://github.com/kurianbenoy/biblerestapi
Last synced: 23 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/kurianbenoy/biblerestapi
- Owner: kurianbenoy
- Created: 2018-07-15T03:20:35.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2018-08-18T19:37:03.000Z (over 6 years ago)
- Last Synced: 2024-10-15T01:21:25.660Z (3 months ago)
- Language: PLpgSQL
- Size: 7.13 MB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 6
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
## Bible Rest API
**Installation**
```
pip install pipenvpipenv install
```**MYSQL setup**
```
sudo apt-get install python3-dev libmysqlclient-devpipenv 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)