Metadata-Version: 2.1
Name: bentodev
Version: 0.1.18
Summary: BentoBox Local Development System
Home-page: https://github.com/getbento/bentodev
Author: Dylan Stein
Author-email: dylan@getbento.com
License: UNKNOWN
Keywords: bentobox bentodev
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Environment :: Console
Classifier: Intended Audience :: Developers
Classifier: Natural Language :: English
Classifier: Operating System :: POSIX
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: Implementation :: CPython
Classifier: Programming Language :: Python :: Implementation :: PyPy
Classifier: Topic :: Software Development :: Build Tools
Requires-Dist: Click (==6.7)
Requires-Dist: Flask (==0.12.1)
Requires-Dist: gitdb2 (==2.0.0)
Requires-Dist: GitPython (==2.1.3)
Requires-Dist: itsdangerous (==0.24)
Requires-Dist: Jinja2 (==2.9.6)
Requires-Dist: libsass (==0.12.3)
Requires-Dist: MarkupSafe (==1.0)
Requires-Dist: money (==1.3.0)
Requires-Dist: pip (==9.0.1)
Requires-Dist: python-dateutil (==2.6.0)
Requires-Dist: pytz (==2017.2)
Requires-Dist: requests (==2.13.0)
Requires-Dist: setuptools (==35.0.1)
Requires-Dist: six (==1.10.0)
Requires-Dist: smmap2 (==2.0.1)
Requires-Dist: Unidecode (==0.4.20)
Requires-Dist: Werkzeug (==0.12.1)
Requires-Dist: Babel (==2.4.0)


BentoDev - BentoBox Local Theme Editor
######################################

.. contents::

.. section-numbering::


Main Features
=============

* Edit BentoBox themes locally
* Uses real data when making themes
* Use Flask to act as a proxy between server requests
* Uses Jinja2 to rigidly enforce template edits 

Installation
============

NOTE: This package is currently only supported on POSIX systems. For those on Windows it is recommended to create a new Vagrant box before installing.

It is recommended to install bentodev on a seperate Python 3 virtual environment:

.. code-block:: bash

  $ virtualenv -p python3 venv
  $ source venv/bin/activate

After ensuring one is on the correct Python 3 environment simply pip install the latest version:

.. code-block:: bash

  $ pip install bentodev

Usage
===========
BentoDev functions are activated via a command line interface.

.. code-block:: bash

    $ bentodev
    Usage: bentodev [OPTIONS] COMMAND [ARGS]...

    BentoDev Used to develop themes locally for BentoBox sites!

    Options:
    --version  Show the version and exit.
    --help     Show this message and exit.

    Commands:
      clone   Clone an account you have access too.
      config  Base configuration
      list    List accounts and themes you have access too.
      start   Begin running the development server

Setup
-----
Upon using BentoDev for the first time you will be propmted to use add your BentoBox account.

You may also be asked for a password to get a remote token for your session.


Cloning Themes
--------------
By using the command ``bentodev list`` or ``bentodev start`` you will see the list of available Accounts and their current associated theme.

If you do not see any Accounts/Themes you need to create an Account that is associated to your User through the BentoBox website.

To work on an Account's theme you must first clone the theme. To do so use:

.. code-block:: bash

  $ bentodev clone <theme_name>

You may be prompted to connect your GitHub account to BentoBox if you have not done so previously.

The theme will then be cloned to the ``~/bentodev/sites/<theme_name>`` folder, where you can then push edits with standard git commands.

Working on Themes
-----------------
Once a theme has been cloned you can then run a small local server that will handle making requests to BentoBox.

.. code-block:: bash

   $ bentodev start <account_name>

You should then see the server run, where you can connect at `localhost:5000 <http://localhost:5000>`_

Development
===========

To develop simply Git clone the associated URL.

Feature or test branches created must have be approved through pull request review before merging with master.

To make use of all debugging features, run the BentoBox Django application locally and then run the bentodev server with the flag ``--local``:

.. code-block:: bash

   $ bentodev start <account_name> --local

User Configuration
==================

Additional user settings can be added to the user config file at ``~/bentodev/config.json``. Default settings include:

.. code-block:: javascript

  {
    "BENTO_USER": "<user_name>"
  }

Addtional settings can be added by hand. These include

.. code-block:: javascript

  {
    "DEV_ROOT": "<dir_pat>", (ie. "/Users/<user>/test_folder/")
    "HOST": "<host_value>", (ie. "0.0.0.0")
    "PORT": "<port_value>", (i.e "8000")
  }

Meta
====

User support
------------

Please use the following support channels:

* `GitHub issues <https://github.com/getbento/bentodev/issues>`_
  for bug reports and feature requests.
* `StackOverflow <https://stackoverflow.com>`_
  to ask questions (please make sure to use the
  `bentodev <http://stackoverflow.com/questions/tagged/bentodev>`_ tag).
* Tweet directly to `@bentoboxnyc <https://twitter.com/bentoboxnyc>`_.
* You can also tweet directly to `@djstein`_.

Related projects
----------------

BentoBox
~~~~~~~~~~~~
The entire utility is completely coupled to the `BentoBox Django Application <https://www.github.com/getbento/bentobox>`_.

It pulls data from the production (or a local) BentoBox instance and allows real data to displayed as engineers/designers edit themes that are displayed on the getbento.com domain.

Dependencies
~~~~~~~~~~~~

* `Flask <https://http://flask.pocoo.org>`_
* `Jinja2 <http://jinja.pocoo.org/>`_
* `Requests <https://python-requests.org>`_


