Metadata-Version: 2.1
Name: monobox
Version: 0.2.2
Summary: A uniform flexible environment for coding, testing, and deploying using Docker
Home-page: https://github.com/InnovativeInventor/monobox
Author: InnovativeInventor
Author-email: theinnovativeinventor@gmail.com
License: UNKNOWN
Project-URL: Bug Reports, https://github.com/InnovativeInventor/monobox/issues
Project-URL: Source, https://github.com/InnovativeInventor/monobox
Keywords: monobox docker development
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Programming Language :: Python :: 3
Classifier: Intended Audience :: Developers
Classifier: Topic :: Software Development :: Build Tools
Classifier: License :: OSI Approved :: MIT License
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: docker
Requires-Dist: requests
Requires-Dist: click

## monobox
A uniform flexible environment for coding, testing, and deploying using Docker

## Suggested Workflow
- Create your Monofile and Dockerfile. Your Monofile will include everything you need when developing, and your Dockerfile will include everything else
- When deploying, simply take your Dockerfile and use it in production!

## Recommendations
- Use the monobox shortcuts by adding `monobox package` to your Monofile.
- Add your `.gitconfig` file to your developing folder so it gets copied into the Dockerfile
- Add `.monobox` to your `.gitignore`

## Planned Features
- [ ] Easy one-step deployment
- [ ] Unit tests

## Options
```
Usage: monobox [OPTIONS] COMMAND [ARGS]...

  A uniform flexible environment for coding, testing, and deploying using
  Docker.

Options:
  --help  Show this message and exit.

Commands:
  bash     Runs bash when starting up
  default  Starts the container using your defaults
  deploy   Deploys your application using your Dockerfile
  python   Runs the python interperter instead of bash
  sh       Runs sh when starting up

```

## Troubleshooting
If you see `launchpadlib 1.10.6 requires testresources, which is not installed.`, then run `sudo apt install python-testresources` and restart the terminal.


