mirror of https://github.com/snachodog/mybuddy.git
43 lines
1.1 KiB
Markdown
43 lines
1.1 KiB
Markdown
# Baby Buddy
|
|
|
|
[](https://travis-ci.org/cdubz/babybuddy)
|
|
[](https://coveralls.io/github/cdubz/babybuddy?branch=master)
|
|
[](https://opensource.org/licenses/BSD-2-Clause)
|
|
|
|
A buddy for babies! Helps caregivers track sleep, feedings, diaper changes, and
|
|
tummy time to learn about and predict baby's needs without (as much) guess
|
|
work.
|
|
|
|

|
|
|
|
## Demo
|
|
|
|
A [demo of Baby Buddy](https://babybuddy.herokuapp.com) is available on Heroku.
|
|
The demo instance resets every hour. Login credentials are:
|
|
|
|
- Username: `admin`
|
|
- Password: `admin`
|
|
|
|
## Development
|
|
|
|
### Installation
|
|
|
|
```
|
|
pip install pipenv
|
|
pipenv install --dev
|
|
npm install -g gulp-cli
|
|
npm install
|
|
gulp migrate
|
|
gulp
|
|
```
|
|
|
|
Open [http://127.0.0.1:8000](http://127.0.0.1:8000) and log in with the default
|
|
user name and password (`admin`/`admin`).
|
|
|
|
### Fake data
|
|
|
|
From within the pipenv shell, execute:
|
|
|
|
```
|
|
python manage.py fake
|
|
``` |