2018-04-17 13:19:06 +00:00
|
|
|
<img src="babybuddy/static_src/logo/icon.png" height="150" align="left">
|
2018-04-16 12:45:23 +00:00
|
|
|
|
2017-10-22 20:00:29 +00:00
|
|
|
# Baby Buddy
|
|
|
|
|
2017-10-22 22:24:52 +00:00
|
|
|
[![Build Status](https://travis-ci.org/cdubz/babybuddy.svg?branch=master)](https://travis-ci.org/cdubz/babybuddy)
|
|
|
|
[![Coverage Status](https://coveralls.io/repos/github/cdubz/babybuddy/badge.svg?branch=master)](https://coveralls.io/github/cdubz/babybuddy?branch=master)
|
2017-10-23 08:25:31 +00:00
|
|
|
[![License](https://img.shields.io/badge/License-BSD%202--Clause-orange.svg)](https://opensource.org/licenses/BSD-2-Clause)
|
2017-11-21 21:41:40 +00:00
|
|
|
[![Gitter](https://img.shields.io/gitter/room/nwjs/nw.js.svg)](https://gitter.im/babybuddy/Lobby)
|
2017-10-22 22:24:52 +00:00
|
|
|
|
2017-10-22 21:08:16 +00:00
|
|
|
A buddy for babies! Helps caregivers track sleep, feedings, diaper changes, and
|
2018-02-25 06:13:39 +00:00
|
|
|
tummy time to learn about and predict baby's needs without (*as much*) guess
|
2017-10-23 14:38:52 +00:00
|
|
|
work.
|
|
|
|
|
2017-10-28 03:20:52 +00:00
|
|
|
![Baby Buddy desktop view](screenshot.png)
|
|
|
|
|
|
|
|
![Baby Buddy mobile views](screenshot_mobile.png)
|
2017-10-22 20:00:29 +00:00
|
|
|
|
2017-11-15 18:08:13 +00:00
|
|
|
**Table of Contents**
|
|
|
|
|
|
|
|
- [Demo](#demo)
|
|
|
|
- [Deployment](#deployment)
|
2017-11-16 19:24:27 +00:00
|
|
|
- [AWS Elastic Beanstalk](#aws-elastic-beanstalk)
|
2017-11-24 19:39:20 +00:00
|
|
|
- [Docker](#docker)
|
2017-11-15 18:08:13 +00:00
|
|
|
- [Nanobox](#nanobox)
|
2017-11-16 19:24:27 +00:00
|
|
|
- [Heroku](#heroku)
|
2017-11-20 16:12:09 +00:00
|
|
|
- [Manual](#manual)
|
2017-11-29 20:02:14 +00:00
|
|
|
- [Configuration](#configuration)
|
2017-12-05 21:46:15 +00:00
|
|
|
- [API](#api)
|
|
|
|
- [Authentication](#authentication)
|
2017-12-06 00:43:57 +00:00
|
|
|
- [`GET` Method](#get-method)
|
|
|
|
- [`OPTIONS` Method](#options-method)
|
|
|
|
- [`POST` Method](#post-method)
|
2017-11-15 18:08:13 +00:00
|
|
|
- [Development](#development)
|
|
|
|
- [Installation](#installation)
|
2017-12-02 19:37:12 +00:00
|
|
|
- [Gulp Commands](#gulp-commands)
|
2017-11-15 18:08:13 +00:00
|
|
|
|
2017-10-23 09:25:56 +00:00
|
|
|
## Demo
|
|
|
|
|
2017-11-30 00:28:43 +00:00
|
|
|
A [demo of Baby Buddy](http://demo.baby-buddy.net) is available on Heroku.
|
2017-10-23 14:38:52 +00:00
|
|
|
The demo instance resets every hour. Login credentials are:
|
|
|
|
|
|
|
|
- Username: `admin`
|
|
|
|
- Password: `admin`
|
2017-10-23 09:25:56 +00:00
|
|
|
|
2017-10-24 00:33:28 +00:00
|
|
|
## Deployment
|
|
|
|
|
2018-02-25 06:13:39 +00:00
|
|
|
The default user name and password for Baby Buddy is `admin`/`admin`. For any
|
2017-11-30 00:28:43 +00:00
|
|
|
deployment, **log in and change the default admin password immediately**.
|
|
|
|
|
|
|
|
Many of Baby Buddy's configuration settings can be controlled using environment
|
|
|
|
variables - see [Configuration](#configuration) for detailed information.
|
2017-11-15 18:08:13 +00:00
|
|
|
|
2017-11-16 19:24:27 +00:00
|
|
|
### AWS Elastic Beanstalk
|
2017-10-24 00:33:28 +00:00
|
|
|
|
2017-11-16 19:24:27 +00:00
|
|
|
A basic [Elastic Beanstalk](https://aws.amazon.com/elasticbeanstalk/)
|
2018-02-25 06:13:39 +00:00
|
|
|
configuration is provided in `.ebextensions/babybuddy.config`. The steps
|
2017-11-16 19:24:27 +00:00
|
|
|
below are a rough guide to deployment. See [Working with Python](http://docs.aws.amazon.com/elasticbeanstalk/latest/dg/create-deploy-python-apps.html)
|
|
|
|
for detailed information.
|
2017-10-24 00:33:28 +00:00
|
|
|
|
2017-11-16 19:24:27 +00:00
|
|
|
1. Clone/download the Baby Buddy repo
|
2017-11-15 18:08:13 +00:00
|
|
|
|
2017-11-16 19:24:27 +00:00
|
|
|
git clone https://github.com/cdubz/babybuddy.git
|
|
|
|
|
|
|
|
1. Enter the cloned/downloaded directory
|
|
|
|
|
|
|
|
cd babybuddy
|
2018-02-25 06:13:39 +00:00
|
|
|
|
2017-11-20 16:12:09 +00:00
|
|
|
1. Change the `SECRET_KEY` value to something random in `.ebextensions/babybuddy.config`
|
2017-11-16 19:24:27 +00:00
|
|
|
|
|
|
|
1. [Create an IAM user](http://docs.aws.amazon.com/IAM/latest/UserGuide/id_users_create.html) in AWS with EB, EC2, RDS and S3 privileges.
|
|
|
|
|
|
|
|
1. Initialize the Elastic Bean application (using the IAM user from the previous step)
|
|
|
|
|
2017-11-29 20:02:14 +00:00
|
|
|
eb init -p python-3.6
|
2018-02-25 06:13:39 +00:00
|
|
|
|
2017-11-16 19:24:27 +00:00
|
|
|
1. Create/deploy the environment! :rocket:
|
|
|
|
|
|
|
|
eb create -db -db.engine postgres
|
|
|
|
|
2018-02-25 06:13:39 +00:00
|
|
|
The create command will also do an initial deployment. Run `eb deploy` to
|
2017-11-16 19:24:27 +00:00
|
|
|
redeploy the app (e.g. if there are errors or settings are changed).
|
2017-11-15 18:08:13 +00:00
|
|
|
|
2017-11-24 19:39:20 +00:00
|
|
|
### Docker
|
|
|
|
|
2018-02-25 06:13:39 +00:00
|
|
|
A Docker deploy requires [Docker](http://docker.com/) and
|
2017-11-24 19:39:20 +00:00
|
|
|
[Docker Compose](https://docs.docker.com/compose/overview/) to create two
|
2017-12-01 03:54:50 +00:00
|
|
|
containers - one for the database and one for the application. Baby Buddy uses a
|
|
|
|
[multi-stage build](https://docs.docker.com/engine/userguide/eng-image/multistage-build/),
|
2017-12-01 03:33:51 +00:00
|
|
|
which requires Docker version 17.05 or newer.
|
|
|
|
|
2017-11-24 19:39:20 +00:00
|
|
|
1. Copy the `docker.env.example` to `docker.env` and set the `ALLOWED_HOSTS` and
|
|
|
|
`SECRET_KEY` variables within
|
|
|
|
|
|
|
|
cp docker.env.example docker.env
|
|
|
|
editor docker.env
|
2018-02-25 06:13:39 +00:00
|
|
|
|
|
|
|
*See [Configuration](#configuration) for other settings that can be
|
2017-11-30 00:28:43 +00:00
|
|
|
controlled by environment variables added to the `docker.env` file.*
|
2018-02-25 06:13:39 +00:00
|
|
|
|
2017-11-26 19:02:57 +00:00
|
|
|
1. Build/run the application
|
2017-11-24 19:39:20 +00:00
|
|
|
|
2017-11-26 19:02:57 +00:00
|
|
|
docker-compose up -d
|
2018-02-25 06:13:39 +00:00
|
|
|
|
2017-11-26 19:02:57 +00:00
|
|
|
1. Initialize the database *(first run/after updates)*
|
2017-11-24 19:39:20 +00:00
|
|
|
|
2017-11-26 19:02:57 +00:00
|
|
|
docker-compose exec app python manage.py migrate
|
2017-11-24 19:39:20 +00:00
|
|
|
|
2017-11-26 19:02:57 +00:00
|
|
|
1. Initialize static assets *(first run/after updates)*
|
2017-11-24 19:39:20 +00:00
|
|
|
|
2017-11-26 19:02:57 +00:00
|
|
|
docker-compose exec app python manage.py collectstatic
|
2018-02-25 06:13:39 +00:00
|
|
|
|
|
|
|
The app should now be locally available at
|
|
|
|
[http://127.0.0.1:8000](http://127.0.0.1:8000). See
|
2017-11-24 19:39:20 +00:00
|
|
|
[Get Started, Part 6: Deploy your app](https://docs.docker.com/get-started/part6/)
|
|
|
|
for detailed information about how to deployment methods with Docker.
|
|
|
|
|
2017-11-15 18:08:13 +00:00
|
|
|
### Nanobox
|
|
|
|
|
2018-02-25 06:13:39 +00:00
|
|
|
An example [Nanobox](https://nanobox.io/) configuration, `boxfile.yml`, is
|
|
|
|
provided with Baby Buddy. The steps below are a rough guide to deployment. See
|
2017-11-15 18:08:13 +00:00
|
|
|
[Create and Deploy a Custom Django App](https://guides.nanobox.io/python/django/)
|
|
|
|
for detailed information about Nanobox's deployment and configuration process.
|
|
|
|
|
|
|
|
1. Clone/download the Baby Buddy repo
|
|
|
|
|
|
|
|
git clone https://github.com/cdubz/babybuddy.git
|
|
|
|
|
|
|
|
1. Enter the cloned/downloaded directory
|
|
|
|
|
|
|
|
cd babybuddy
|
2018-02-25 06:13:39 +00:00
|
|
|
|
2017-11-26 19:02:57 +00:00
|
|
|
1. Add the `SECRET_KEY` and `DJANGO_SETTINGS_MODULE` environment variables
|
2017-11-15 18:08:13 +00:00
|
|
|
|
|
|
|
nanobox evar add DJANGO_SETTINGS_MODULE=babybuddy.settings.nanobox
|
|
|
|
nanobox evar add SECRET_KEY=<CHANGE TO SOMETHING RANDOM>
|
2018-02-25 06:13:39 +00:00
|
|
|
|
|
|
|
*See [Configuration](#configuration) for other settings that can be
|
2017-11-30 00:28:43 +00:00
|
|
|
controlled by environment variables.*
|
2017-11-15 18:08:13 +00:00
|
|
|
|
|
|
|
1. Deploy! :rocket:
|
|
|
|
|
|
|
|
nanobox deploy
|
2017-10-24 00:33:28 +00:00
|
|
|
|
2017-11-16 19:24:27 +00:00
|
|
|
### Heroku
|
|
|
|
|
|
|
|
[![Deploy](https://www.herokucdn.com/deploy/button.svg)](https://heroku.com/deploy)
|
|
|
|
|
|
|
|
For manual deployments to Heroku without using the deploy button, make sure to
|
|
|
|
create two settings before pushing using `heroku config:set`:
|
|
|
|
|
|
|
|
heroku config:set DJANGO_SETTINGS_MODULE=babybuddy.settings.heroku
|
|
|
|
heroku config:set SECRET_KEY=<CHANGE TO SOMETHING RANDOM>
|
2018-02-25 06:13:39 +00:00
|
|
|
|
|
|
|
See [Configuration](#configuration) for other settings that can be controlled
|
2017-11-30 00:28:43 +00:00
|
|
|
by `heroku config:set`.
|
2018-02-25 06:13:39 +00:00
|
|
|
|
2017-11-20 16:12:09 +00:00
|
|
|
### Manual
|
|
|
|
|
|
|
|
There are a number of ways to deploy Baby Buddy manually to any server/VPS.
|
2018-02-25 06:13:39 +00:00
|
|
|
The application can run fine in low memory (below 1GB) situations, however a
|
|
|
|
32-bit operating system is recommended in such cases. This is primarily
|
2017-11-20 16:12:09 +00:00
|
|
|
because the build process can be memory intensive and cause excessive memory
|
|
|
|
usage on 64-bit systems. If all fails, assets can be built on a local machine
|
|
|
|
and then uploaded to a server.
|
|
|
|
|
|
|
|
#### Requirements
|
|
|
|
|
2017-12-03 21:58:53 +00:00
|
|
|
- Python 3.4+, pip, pipenv
|
2017-11-20 16:12:09 +00:00
|
|
|
- Web server ([nginx](http://nginx.org/), [Apache](http://httpd.apache.org/), etc.)
|
|
|
|
- Application server ([uwsgi](http://projects.unbit.it/uwsgi), [gunicorn](http://gunicorn.org/), etc.)
|
|
|
|
- Database ([sqlite](https://sqlite.org/), [Postgres](https://www.postgresql.org/), [MySQL](https://www.mysql.com/), etc.)
|
|
|
|
- NodeJS 8.x and NPM 5.x (for building assets)
|
|
|
|
- Gulp (for building assets)
|
|
|
|
|
|
|
|
#### Example deployment
|
|
|
|
|
|
|
|
*This example assumes a 512MB VPS instance with Ubuntu 16.04 **x32**.* It uses
|
|
|
|
Python 3.x, nginx, uwsgi and sqlite and should be sufficient for a few users
|
|
|
|
(e.g. two parents and 1+ child).
|
|
|
|
|
|
|
|
1. Install Python 3.x, pip, nginx and uwsgi
|
|
|
|
|
2018-05-04 09:19:53 +00:00
|
|
|
sudo apt-get install python3 python3-pip nginx uwsgi uwsgi-plugin-python3 git
|
2017-11-20 16:12:09 +00:00
|
|
|
|
|
|
|
1. Install pipenv
|
|
|
|
|
|
|
|
sudo -H pip install pipenv
|
|
|
|
|
|
|
|
1. Install NodeJS, NPM and Gulp
|
|
|
|
|
|
|
|
curl -sL https://deb.nodesource.com/setup_8.x | sudo -E bash -
|
|
|
|
sudo apt-get install nodejs
|
|
|
|
sudo npm install -g gulp-cli
|
2018-02-25 06:13:39 +00:00
|
|
|
|
2017-11-20 16:12:09 +00:00
|
|
|
1. Set up directories and files
|
|
|
|
|
|
|
|
sudo mkdir /var/www/babybuddy
|
|
|
|
sudo chown user:user /var/www/babybuddy
|
|
|
|
mkdir -p /var/www/babybuddy/data/media
|
|
|
|
sudo chown -R www-data:www-data /var/www/babybuddy/data
|
|
|
|
git clone https://github.com/cdubz/babybuddy.git /var/www/babybuddy/public
|
2018-02-25 06:13:39 +00:00
|
|
|
|
2017-11-20 16:12:09 +00:00
|
|
|
1. Move in to the application folder
|
|
|
|
|
|
|
|
cd /var/www/babybuddy/public
|
|
|
|
|
|
|
|
1. Initiate the Python environment
|
|
|
|
|
2018-05-04 09:19:53 +00:00
|
|
|
pipenv install --three --dev
|
2018-02-25 06:13:39 +00:00
|
|
|
|
2017-11-20 16:12:09 +00:00
|
|
|
1. Build static assets
|
|
|
|
|
|
|
|
npm install
|
|
|
|
gulp build
|
2018-02-25 06:13:39 +00:00
|
|
|
|
2017-11-20 16:12:09 +00:00
|
|
|
1. Create a production settings file and set the ``SECRET_KEY`` and ``ALLOWED_HOSTS`` values
|
|
|
|
|
|
|
|
cp babybuddy/settings/production.example.py babybuddy/settings/production.py
|
|
|
|
editor babybuddy/settings/production.py
|
|
|
|
|
|
|
|
1. Initiate the application
|
|
|
|
|
|
|
|
export DJANGO_SETTINGS_MODULE=babybuddy.settings.production
|
|
|
|
gulp collectstatic
|
|
|
|
gulp migrate
|
2018-02-25 06:13:39 +00:00
|
|
|
|
2017-11-20 16:12:09 +00:00
|
|
|
1. Set appropriate permissions on the database and data folder
|
|
|
|
|
|
|
|
sudo chown www-data:www-data /var/www/babybuddy/data/db.sqlite3
|
|
|
|
sudo chmod 640 /var/www/babybuddy/data/db.sqlite3
|
|
|
|
sudo chmod 750 /var/www/babybuddy/data
|
|
|
|
|
|
|
|
1. Create and configure the uwsgi app
|
|
|
|
|
|
|
|
sudo editor /etc/uwsgi/apps-available/babybuddy.ini
|
|
|
|
sudo ln -s /etc/uwsgi/apps-available/babybuddy.ini /etc/uwsgi/apps-enabled/babybuddy.ini
|
|
|
|
sudo service uwsgi restart
|
2018-02-25 06:13:39 +00:00
|
|
|
|
2017-11-20 16:12:09 +00:00
|
|
|
Example config:
|
2018-02-25 06:13:39 +00:00
|
|
|
|
2017-11-20 16:12:09 +00:00
|
|
|
[uwsgi]
|
|
|
|
plugins = python3
|
|
|
|
project = babybuddy
|
|
|
|
base_dir = /var/www/babybuddy
|
2018-02-25 06:13:39 +00:00
|
|
|
|
2017-11-20 16:12:09 +00:00
|
|
|
virtualenv = /home/user/.local/share/virtualenvs/babybuddy-XXXXXXXX
|
|
|
|
chdir = %(base_dir)/babybuddy
|
|
|
|
module = %(project).wsgi:application
|
|
|
|
env = DJANGO_SETTINGS_MODULE=%(project).settings.production
|
|
|
|
master = True
|
|
|
|
vacuum = True
|
2018-02-25 06:13:39 +00:00
|
|
|
|
|
|
|
See the [uWSGI documentation](http://uwsgi-docs.readthedocs.io/en/latest/)
|
2017-11-20 16:12:09 +00:00
|
|
|
for more advanced configuration details.
|
2018-02-25 06:13:39 +00:00
|
|
|
|
|
|
|
*Note: Find the location of the pipenv virtual environment with the command
|
2017-11-20 16:12:09 +00:00
|
|
|
``pipenv --venv``.*
|
2018-02-25 06:13:39 +00:00
|
|
|
|
2017-11-20 16:12:09 +00:00
|
|
|
1. Create and configure the nginx server
|
|
|
|
|
|
|
|
sudo vim /etc/nginx/sites-available/babybuddy
|
|
|
|
sudo ln -s /etc/nginx/sites-available/babybuddy /etc/nginx/sites-enabled/babybuddy
|
|
|
|
sudo service nginx restart
|
|
|
|
|
|
|
|
Example config:
|
|
|
|
|
|
|
|
upstream babybuddy {
|
|
|
|
server unix:///var/run/uwsgi/app/babybuddy/socket;
|
|
|
|
}
|
2018-02-25 06:13:39 +00:00
|
|
|
|
2017-11-20 16:12:09 +00:00
|
|
|
server {
|
|
|
|
listen 80;
|
|
|
|
server_name babybuddy.example.com;
|
2018-02-25 06:13:39 +00:00
|
|
|
|
2017-11-20 16:12:09 +00:00
|
|
|
location / {
|
|
|
|
uwsgi_pass babybuddy;
|
|
|
|
include uwsgi_params;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
See the [nginx documentation](https://nginx.org/en/docs/) for more advanced
|
|
|
|
configuration details.
|
2018-02-25 06:13:39 +00:00
|
|
|
|
2017-11-20 16:12:09 +00:00
|
|
|
1. That's it (hopefully)! :tada:
|
2017-11-16 19:24:27 +00:00
|
|
|
|
2017-11-29 20:02:14 +00:00
|
|
|
## Configuration
|
|
|
|
|
2017-12-01 03:54:50 +00:00
|
|
|
Environment variables can be used to define a number of configuration settings.
|
|
|
|
Baby Buddy will check the application directory structure for an `.env` file or
|
|
|
|
take these variables from the system environment. **System environment variables
|
|
|
|
take precedence over the contents of an `.env` file.**
|
|
|
|
|
|
|
|
- [`ALLOWED_HOSTS`](#allowed_hosts)
|
|
|
|
- [`ALLOW_UPLOADS`](#allow_uploads)
|
2018-03-04 23:22:20 +00:00
|
|
|
- [`AWS_ACCESS_KEY_ID`](#aws_access_key_id)
|
|
|
|
- [`AWS_SECRET_ACCESS_KEY`](#aws_secret_access_key)
|
|
|
|
- [`AWS_STORAGE_BUCKET_NAME`](#aws_storage_bucket_name)
|
2017-12-01 03:54:50 +00:00
|
|
|
- [`DEBUG`](#debug)
|
|
|
|
- [`NAP_START_MAX`](#nap_start_max)
|
|
|
|
- [`NAP_START_MIN`](#nap_start_min)
|
|
|
|
- [`SECRET_KEY`](#secret_key)
|
|
|
|
- [`TIME_ZONE`](#time_zone)
|
2017-11-29 20:02:14 +00:00
|
|
|
|
|
|
|
### `ALLOWED_HOSTS`
|
|
|
|
|
2017-11-30 00:28:43 +00:00
|
|
|
*Default: * (any)*
|
2017-11-29 20:02:14 +00:00
|
|
|
|
2018-02-25 06:13:39 +00:00
|
|
|
This option may be set to a single host or comma-separated list of hosts
|
2017-11-30 00:28:43 +00:00
|
|
|
(without spaces). This should *always* be set to a specific host or hosts in
|
|
|
|
production deployments.
|
2017-11-29 20:02:14 +00:00
|
|
|
|
|
|
|
See also: [Django's documentation on the ALLOWED_HOSTS setting](https://docs.djangoproject.com/en/1.11/ref/settings/#allowed-hosts)
|
|
|
|
|
|
|
|
### `ALLOW_UPLOADS`
|
|
|
|
|
2017-11-30 00:28:43 +00:00
|
|
|
*Default: True*
|
2017-11-29 20:02:14 +00:00
|
|
|
|
2018-02-25 06:13:39 +00:00
|
|
|
Whether or not to allow uploads (e.g. of Child photos). For some deployments
|
2017-11-30 00:28:43 +00:00
|
|
|
(AWS, Heroku, Nanobox) this setting will default to False due to the lack of
|
|
|
|
available persistent storage.
|
2017-11-29 20:02:14 +00:00
|
|
|
|
2018-03-04 23:22:20 +00:00
|
|
|
### `AWS_ACCESS_KEY_ID`
|
|
|
|
|
|
|
|
*Default: None*
|
|
|
|
|
|
|
|
Required to access your AWS S3 bucket, should be uniquely generated per bucket
|
|
|
|
for security.
|
|
|
|
|
|
|
|
See also: [`AWS_STORAGE_BUCKET_NAME`](#aws_storage_bucket_name)
|
|
|
|
|
|
|
|
### `AWS_SECRET_ACCESS_KEY`
|
|
|
|
|
|
|
|
*Default: None*
|
|
|
|
|
|
|
|
Required to access your AWS S3 bucket, should be uniquely generated per bucket
|
|
|
|
for security.
|
|
|
|
|
|
|
|
See also: [`AWS_STORAGE_BUCKET_NAME`](#aws_storage_bucket_name)
|
|
|
|
|
|
|
|
### `AWS_STORAGE_BUCKET_NAME`
|
|
|
|
|
|
|
|
*Default: None*
|
|
|
|
|
|
|
|
If you would like to use AWS S3 for storage on ephemeral storage platforms like
|
|
|
|
Heroku you will need to create a bucket and add it's name. See django-storages'
|
|
|
|
[Amazon S3 documentation]
|
|
|
|
(http://django-storages.readthedocs.io/en/latest/backends/amazon-S3.html).
|
|
|
|
|
2017-11-29 20:02:14 +00:00
|
|
|
### `DEBUG`
|
|
|
|
|
2017-11-30 00:28:43 +00:00
|
|
|
*Default: False*
|
|
|
|
|
|
|
|
When in debug mode, Baby Buddy will print much more detailed error information
|
|
|
|
for exceptions. This setting should be *False* in production deployments.
|
2017-11-29 20:02:14 +00:00
|
|
|
|
2017-11-30 00:28:43 +00:00
|
|
|
See also [Django's documentation on the DEBUG setting](https://docs.djangoproject.com/en/1.11/ref/settings/#debug).
|
2017-11-29 20:02:14 +00:00
|
|
|
|
|
|
|
### `NAP_START_MAX`
|
|
|
|
|
2017-11-30 00:28:43 +00:00
|
|
|
*Default: 18:00*
|
2017-11-29 20:02:14 +00:00
|
|
|
|
2017-11-30 00:28:43 +00:00
|
|
|
The maximum *start* time (in the instance's time zone) before which a sleep
|
2017-11-29 20:02:14 +00:00
|
|
|
entry is consider a nap. Expects the format %H:%M.
|
|
|
|
|
|
|
|
### `NAP_START_MIN`
|
|
|
|
|
2017-11-30 00:28:43 +00:00
|
|
|
*Default: 06:00*
|
2017-11-29 20:02:14 +00:00
|
|
|
|
2017-11-30 00:28:43 +00:00
|
|
|
The minimum *start* time (in the instance's time zone) after which a sleep
|
2017-11-29 20:02:14 +00:00
|
|
|
entry is considered a nap. Expects the format %H:%M.
|
|
|
|
|
|
|
|
### `SECRET_KEY`
|
|
|
|
|
2017-11-30 00:28:43 +00:00
|
|
|
*Default: None*
|
|
|
|
|
2018-02-25 06:13:39 +00:00
|
|
|
A random, unique string must be set as the "secret key" before Baby Buddy can
|
2017-11-30 00:28:43 +00:00
|
|
|
be deployed and run.
|
2017-11-29 20:02:14 +00:00
|
|
|
|
2017-11-30 00:28:43 +00:00
|
|
|
See also [Django's documentation on the SECRET_KEY setting](https://docs.djangoproject.com/en/1.11/ref/settings/#secret-key).
|
2017-11-29 20:02:14 +00:00
|
|
|
|
|
|
|
### `TIME_ZONE`
|
|
|
|
|
2017-11-30 00:56:24 +00:00
|
|
|
*Default: Etc/UTC*
|
2017-11-29 20:02:14 +00:00
|
|
|
|
2017-11-30 00:28:43 +00:00
|
|
|
The time zone to use for the instance. See [List of tz database time zones](https://en.wikipedia.org/wiki/List_of_tz_database_time_zones)
|
|
|
|
for all possible values.
|
2017-11-29 20:02:14 +00:00
|
|
|
|
2017-12-05 21:46:15 +00:00
|
|
|
## API
|
|
|
|
|
|
|
|
Baby Buddy uses the [Django REST Framework](http://www.django-rest-framework.org/)
|
|
|
|
(DRF) to provide a REST API.
|
|
|
|
|
2017-12-06 00:43:57 +00:00
|
|
|
The only requirement for (most) requests is that the `Authorization` header is
|
2018-02-25 06:13:39 +00:00
|
|
|
set as described in the [Authentication](#authentication) section. The one
|
2017-12-06 00:43:57 +00:00
|
|
|
exception is the `/api` endpoint, which lists all available endpoints.
|
|
|
|
|
2018-02-25 06:13:39 +00:00
|
|
|
Currently, the following endpoints are available for `GET`, `OPTIONS`, and
|
2017-12-06 00:43:57 +00:00
|
|
|
`POST` requests:
|
|
|
|
|
|
|
|
- `/api/children/`
|
|
|
|
- `/api/changes/` (Diaper Changes)
|
|
|
|
- `/api/feedings/`
|
|
|
|
- `/api/notes/`
|
|
|
|
- `/api/sleep/`
|
|
|
|
- `/api/timers/`
|
|
|
|
- `/api/tummy-times/`
|
|
|
|
- `/api/weight/`
|
|
|
|
|
2017-12-05 21:46:15 +00:00
|
|
|
### Authentication
|
|
|
|
|
|
|
|
By default, the [TokenAuthentication](http://www.django-rest-framework.org/api-guide/authentication/#tokenauthentication)
|
|
|
|
and [SessionAuthentication](http://www.django-rest-framework.org/api-guide/authentication/#sessionauthentication)
|
|
|
|
classes are enabled. Session authentication covers local API requests made by
|
2018-02-25 06:13:39 +00:00
|
|
|
the application itself. Token authentication allows external requests to be
|
2017-12-05 21:46:15 +00:00
|
|
|
made.
|
|
|
|
|
2018-02-25 06:13:39 +00:00
|
|
|
:exclamation: **In a production environment, token authentication should only
|
2017-12-05 21:46:15 +00:00
|
|
|
be used for API calls to an `https` endpoint.** :exclamation:
|
|
|
|
|
2018-02-25 06:13:39 +00:00
|
|
|
Each user is automatically assigned an API key that can be used for token
|
2017-12-05 21:46:15 +00:00
|
|
|
authentication. This key can be found on the User Settings page for the logged
|
|
|
|
in the user. To use a key for an API request, set the request `Authorization`
|
|
|
|
header to `Token <user-key>`. E.g.
|
|
|
|
|
|
|
|
Authorization: Token 2h23807gd72h7hop382p98hd823dw3g665g56
|
2018-02-25 06:13:39 +00:00
|
|
|
|
2017-12-05 21:46:15 +00:00
|
|
|
If the `Authorization` header is not set or the key is not valid, the API will
|
|
|
|
return `403 Forbidden` with additional details in the response body.
|
|
|
|
|
2017-12-06 00:43:57 +00:00
|
|
|
### `GET` Method
|
|
|
|
|
|
|
|
#### Request
|
|
|
|
|
|
|
|
The `limit` and `offset` request parameters can be used to limit
|
|
|
|
and offset the results set respectively. For example, the following request
|
|
|
|
will return five diaper changes starting from the 10th diaper change entry:
|
|
|
|
|
|
|
|
curl -X GET 'https://[...]/api/changes/?limit=5&offset=10' -H 'Authorization: Token [...]'
|
|
|
|
{
|
|
|
|
"count": <int>,
|
|
|
|
"next": "https://[...]/api/changes/?limit=5&offset=15",
|
|
|
|
"previous": "https://[...]/api/changes/?limit=5&offset=5",
|
|
|
|
"results": [...]
|
|
|
|
}
|
2018-02-25 06:13:39 +00:00
|
|
|
|
|
|
|
Field-based filters for specific endpoints can be found the in the `filters`
|
2017-12-06 00:43:57 +00:00
|
|
|
field of the `OPTIONS` response for specific endpoints.
|
2017-12-05 21:46:15 +00:00
|
|
|
|
2017-12-06 00:43:57 +00:00
|
|
|
#### Response
|
2017-12-05 21:46:15 +00:00
|
|
|
|
|
|
|
Returns JSON data in the response body in the following format:
|
|
|
|
|
|
|
|
{
|
|
|
|
"count":<int>,
|
|
|
|
"next":<url>,
|
|
|
|
"previous":<url>,
|
|
|
|
"results":[{...}]
|
|
|
|
}
|
2018-02-25 06:13:39 +00:00
|
|
|
|
2017-12-05 21:46:15 +00:00
|
|
|
- `count`: Total number of records (*in the database*, not just the response).
|
|
|
|
- `next`: URL for the next set of results.
|
|
|
|
- `previous`: URL for the previous set of results.
|
|
|
|
- `results`: An array of the results of the request.
|
|
|
|
|
2017-12-06 00:43:57 +00:00
|
|
|
### `OPTIONS` Method
|
2017-12-05 21:46:15 +00:00
|
|
|
|
2017-12-06 00:43:57 +00:00
|
|
|
#### Request
|
|
|
|
|
|
|
|
All endpoints will respond to an `OPTIONS` request with detailed information
|
|
|
|
about the endpoint's purpose, parameters, filters, etc.
|
|
|
|
|
|
|
|
#### Response
|
|
|
|
|
|
|
|
Returns JSON data in the response body describing the endpoint, available
|
2018-02-25 06:13:39 +00:00
|
|
|
options for `POST` requests, and available filters for `GET` requests. The
|
2017-12-06 00:43:57 +00:00
|
|
|
following example describes the `/api/children` endpoint:
|
2017-12-05 21:46:15 +00:00
|
|
|
|
|
|
|
{
|
|
|
|
"name": "Child List",
|
|
|
|
"renders": [
|
|
|
|
"application/json",
|
|
|
|
"text/html"
|
|
|
|
],
|
|
|
|
"parses": [
|
|
|
|
"application/json",
|
|
|
|
"application/x-www-form-urlencoded",
|
|
|
|
"multipart/form-data"
|
|
|
|
],
|
|
|
|
"actions": {
|
|
|
|
"POST": {
|
|
|
|
"id": {
|
|
|
|
"type": "integer",
|
|
|
|
"required": false,
|
|
|
|
"read_only": true,
|
|
|
|
"label": "ID"
|
|
|
|
},
|
|
|
|
[...]
|
|
|
|
}
|
2017-12-06 00:43:57 +00:00
|
|
|
},
|
|
|
|
"filters": [
|
|
|
|
"first_name",
|
|
|
|
"last_name",
|
|
|
|
"slug"
|
|
|
|
]
|
2017-12-05 21:46:15 +00:00
|
|
|
}
|
|
|
|
|
2017-12-06 00:43:57 +00:00
|
|
|
### `POST` Method
|
|
|
|
|
|
|
|
#### Request
|
|
|
|
|
2018-02-25 06:13:39 +00:00
|
|
|
To add new entries for a particular endpoint, send a `POST` request with the
|
|
|
|
entry data in JSON format in the request body. The `Content-Type` header for
|
2017-12-06 00:43:57 +00:00
|
|
|
`POST` request must be set to `application/json`.
|
|
|
|
|
2018-02-25 06:13:39 +00:00
|
|
|
Regular sanity checks will be performed on relevant data. See the `OPTIONS`
|
|
|
|
response for a particular endpoint for details on required fields and data
|
2017-12-06 00:43:57 +00:00
|
|
|
formats.
|
|
|
|
|
|
|
|
#### Response
|
2017-12-05 21:46:15 +00:00
|
|
|
|
|
|
|
Returns JSON data in the response body describing the added/updated instance or
|
|
|
|
error details if errors exist. Errors are keyed by either the field in error or
|
2018-02-25 06:13:39 +00:00
|
|
|
the general string "non_field_errors" (usually when validation incorporates
|
2017-12-05 21:46:15 +00:00
|
|
|
multiple fields).
|
|
|
|
|
2017-10-23 08:25:31 +00:00
|
|
|
## Development
|
|
|
|
|
2017-12-02 19:05:46 +00:00
|
|
|
### Requirements
|
|
|
|
|
2017-12-03 21:58:53 +00:00
|
|
|
- Python 3.4+, pip, pipenv
|
2017-12-02 19:05:46 +00:00
|
|
|
- NodeJS 8.x and NPM 5.x
|
|
|
|
- Gulp
|
|
|
|
|
2017-10-23 08:25:31 +00:00
|
|
|
### Installation
|
2017-10-22 20:00:29 +00:00
|
|
|
|
2017-12-02 19:05:46 +00:00
|
|
|
1. Install pipenv
|
|
|
|
|
|
|
|
pip install pipenv
|
2018-02-25 06:13:39 +00:00
|
|
|
|
2017-12-02 19:05:46 +00:00
|
|
|
1. Install required Python packages, including dev packages
|
|
|
|
|
|
|
|
pipenv install --dev
|
|
|
|
|
|
|
|
1. Install Gulp CLI
|
|
|
|
|
|
|
|
npm install -g gulp-cli
|
|
|
|
|
|
|
|
1. Install required Node packages
|
|
|
|
|
|
|
|
npm install
|
|
|
|
|
|
|
|
1. Set, at least, the `DJANGO_SETTINGS_MODULE` environment variable
|
|
|
|
|
|
|
|
export DJANGO_SETTINGS_MODULE=babybuddy.settings.development
|
2018-02-25 06:13:39 +00:00
|
|
|
|
|
|
|
This process will differ based on the host OS. The above example is for
|
2017-12-02 19:05:46 +00:00
|
|
|
Linux-based systems. See [Configuration](#configuration) for other settings
|
|
|
|
and methods for defining them.
|
|
|
|
|
|
|
|
1. Migrate the database
|
|
|
|
|
|
|
|
gulp migrate
|
2018-02-25 06:13:39 +00:00
|
|
|
|
2017-12-02 19:05:46 +00:00
|
|
|
1. Build assets and run the server
|
|
|
|
|
|
|
|
gulp
|
|
|
|
|
2018-02-25 06:13:39 +00:00
|
|
|
This command will also watch for file system changes to rebuild assets and
|
2017-12-02 19:05:46 +00:00
|
|
|
restart the server as needed.
|
2017-10-22 20:00:29 +00:00
|
|
|
|
2017-10-22 20:50:47 +00:00
|
|
|
Open [http://127.0.0.1:8000](http://127.0.0.1:8000) and log in with the default
|
2017-10-23 14:38:52 +00:00
|
|
|
user name and password (`admin`/`admin`).
|
2017-10-22 20:50:47 +00:00
|
|
|
|
2017-12-02 19:37:12 +00:00
|
|
|
### Gulp commands
|
2017-10-22 20:00:29 +00:00
|
|
|
|
2017-12-02 19:37:12 +00:00
|
|
|
Baby Buddy's Gulp commands are defined and configured by files in the
|
2018-02-25 06:13:39 +00:00
|
|
|
[`gulpfile.js`](gulpfile.js) folder. Django's management commands are defined
|
2017-12-02 19:37:12 +00:00
|
|
|
in the [`babybuddy/management/commands`](babybuddy/management/commands) folder.
|
2017-10-22 20:00:29 +00:00
|
|
|
|
2017-12-02 19:37:12 +00:00
|
|
|
- [`gulp`](#gulp)
|
|
|
|
- [`gulp build`](#build)
|
|
|
|
- [`gulp collectstatic`](#collectstatic)
|
|
|
|
- [`gulp compress`](#compress)
|
|
|
|
- [`gulp coverage`](#coverage)
|
|
|
|
- [`gulp extras`](#extras)
|
|
|
|
- [`gulp fake`](#fake)
|
|
|
|
- [`gulp lint`](#lint)
|
|
|
|
- [`gulp makemigrations`](#makemigrations)
|
|
|
|
- [`gulp migrate`](#migrate)
|
|
|
|
- [`gulp reset`](#reset)
|
|
|
|
- [`gulp runserver`](#runserver)
|
|
|
|
- [`gulp scripts`](#scripts)
|
|
|
|
- [`gulp styles`](#styles)
|
|
|
|
- [`gulp test`](#test)
|
2017-10-24 00:33:28 +00:00
|
|
|
|
2017-12-02 19:37:12 +00:00
|
|
|
#### `gulp`
|
2017-10-26 16:26:09 +00:00
|
|
|
|
2017-12-02 19:37:12 +00:00
|
|
|
Executes the `build` and `watch` commands and runs Django's development server.
|
|
|
|
|
|
|
|
#### `build`
|
|
|
|
|
2018-02-25 06:13:39 +00:00
|
|
|
Creates all script, style and "extra" assets and places them in the
|
2017-12-02 19:37:12 +00:00
|
|
|
`babybuddy/static` folder.
|
|
|
|
|
|
|
|
#### `collectstatic`
|
|
|
|
|
|
|
|
Executes Django's `collectstatic` management task. This task relies on files in
|
|
|
|
the `babybuddy/static` folder, so generally `gulp build` should be run before
|
2018-02-25 06:13:39 +00:00
|
|
|
this command for production deployments. Gulp also passes along
|
2017-12-02 19:37:12 +00:00
|
|
|
non-overlapping arguments for this command, e.g. `--no-input`.
|
|
|
|
|
|
|
|
#### `compress`
|
|
|
|
|
|
|
|
:exclamation: *DEPRECATED* :exclamation:
|
|
|
|
|
|
|
|
Compresses built scripts and styles. This command has been deprecated in favor
|
|
|
|
of WhiteNoise's compression as part of the `collectstatic` command.
|
|
|
|
|
|
|
|
#### `coverage`
|
|
|
|
|
|
|
|
Create a test coverage report. See [`.coveragerc`](.coveragerc) for default
|
|
|
|
settings information.
|
|
|
|
|
|
|
|
#### `extras`
|
|
|
|
|
2018-02-25 06:13:39 +00:00
|
|
|
Copies "extra" files (fonts, images and server root contents) to the build
|
2017-12-02 19:37:12 +00:00
|
|
|
folder.
|
|
|
|
|
|
|
|
#### `fake`
|
|
|
|
|
|
|
|
Adds some fake data to the database. By default, ``fake`` creates one child and
|
2018-02-25 06:13:39 +00:00
|
|
|
31 days of random data. Use the `--children` and `--days` flags to change the
|
|
|
|
default values, e.g. `gulp fake --children 5 --days 7` to generate five fake
|
2017-12-02 19:37:12 +00:00
|
|
|
children and seven days of data for each.
|
|
|
|
|
|
|
|
#### `lint`
|
|
|
|
|
|
|
|
Executes Python and SASS linting for all relevant source files.
|
|
|
|
|
|
|
|
#### `makemigrations`
|
|
|
|
|
2018-02-25 06:13:39 +00:00
|
|
|
Executes Django's `makemigrations` management task. Gulp also passes along
|
2017-12-02 19:37:12 +00:00
|
|
|
non-overlapping arguments for this command.
|
|
|
|
|
|
|
|
#### `migrate`
|
|
|
|
|
2018-02-25 06:13:39 +00:00
|
|
|
Executes Django's `migrate` management task. In addition to migrating the
|
|
|
|
database, this command creates the default `admin` user. Gulp also passes along
|
2017-12-02 19:37:12 +00:00
|
|
|
non-overlapping arguments for this command.
|
|
|
|
|
|
|
|
#### `reset`
|
|
|
|
|
2018-02-25 06:13:39 +00:00
|
|
|
Resets the database to a default state *with* one fake child and 31 days of
|
2017-12-02 19:37:12 +00:00
|
|
|
fake data.
|
|
|
|
|
|
|
|
#### `runserver`
|
|
|
|
|
2018-02-25 06:13:39 +00:00
|
|
|
Executes Django's `runserver` management task. Gulp also passes along
|
2017-12-02 19:37:12 +00:00
|
|
|
non-overlapping arguments for this command.
|
|
|
|
|
|
|
|
#### `scripts`
|
|
|
|
|
2018-02-25 06:13:39 +00:00
|
|
|
Builds and combines relevant application scripts. Generally this command does
|
2017-12-02 19:37:12 +00:00
|
|
|
not need to be executed independently - see the `build` command.
|
|
|
|
|
|
|
|
#### `styles`
|
|
|
|
|
2018-02-25 06:13:39 +00:00
|
|
|
Builds and combines SASS styles in to CSS files. Generally this command does
|
2017-12-02 19:37:12 +00:00
|
|
|
not need to be executed independently - see the `build` command.
|
|
|
|
|
|
|
|
#### `test`
|
|
|
|
|
|
|
|
Executes Baby Buddy's suite of tests.
|
2017-10-24 00:33:28 +00:00
|
|
|
|
2018-02-25 06:13:39 +00:00
|
|
|
Gulp also passes along non-overlapping arguments for this command, however
|
2017-12-03 22:14:55 +00:00
|
|
|
individual tests cannot be run with this command. `python manage.py test` can be
|
|
|
|
used for individual test execution.
|