Metadata-Version: 2.1
Name: hackoregon-sandbox
Version: 1.44
Summary: 2019 Sandbox backend API
Home-page: https://github.com/hackoregon/2019-sandbox-backend
Author: Nathan Miller
Author-email: nathan.miller@hackoregon.org
License: MIT
Keywords: 2019-sandbox-backend
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Framework :: Django :: 2.0
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: BSD License
Classifier: Natural Language :: English
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Description-Content-Type: text/markdown
Requires-Dist: djangorestframework
Requires-Dist: djangorestframework-gis

# hackoregon_sandbox

[![Build Status](https://travis-ci.org/hackoregon/>2019-sandbox-backend.svg?branch=master)](https://travis-ci.org/hackoregon/>2019-sandbox-backend)

2019 Sandbox backend API

# Documentation

The full documentation is at <<http://hackoregon.github.io/>>2019-sandbox-backend

# Features

> -   TODO (add what your project does)

# Data Sources

# Quickstart to install package in your own Django Project (Non-Hack
Oregon Workflow)

Install hackoregon_sandbox:

> pip install hackoregon_sandbox

Add subpackages to your `INSTALLED_APPS`:

`` ` python INSTALLED_APPS = (     ...     'api',     ... ) ```

Add hackoregon_sandbox's URL patterns:

`` ` python from hackoregon_sandbox.api import urls as api_urls   urlpatterns = [     ...     url(r'^', include(api_urls)),     ... ] ```

Setup your database with a matching schema

Run the project

# Running Tests

This repo uses pytest and pytest-django to run tests.

For project development work, tests will be run in docker container
using the bin/test.sh script:

# Credits

Tools used in rendering this package:

> -   [Cookiecutter](<https://github.com/audreyr/cookiecutter>)
> -   [cookiecutter-djangopackage](<https://github.com/pydanny/cookiecutter-djangopackage>)



# CHANGELOG

-------

0.1.0 (2019-05-29)
++++++++++++++++++

* First release on PyPI.


