Metadata-Version: 2.1
Name: sib-manager
Version: 0.1.8
Summary: StartinBlox Manager
Home-page: https://git.happy-dev.fr/startinblox/sib-installer
Author: Plup
Author-email: plup@plup.io
License: MIT
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: Operating System :: OS Independent
Requires-Python: >=3.3
Requires-Dist: click
Provides-Extra: dev
Requires-Dist: pytest ; extra == 'dev'
Requires-Dist: pytest-cov ; extra == 'dev'

# Startin'Blox Manager

## Requirements

You will need both Python3 and Pip3 installed.

## Get started

Install the `sib` command line:
```
$ pip3 install --user -U sib-manager
```

Create a new project with your favorite modules (with optional virtualenv). To create a project with `djangoldp_project` and `oidc_provider` :
```
$ sib startproject myproject -m djangoldp_project -m oidc_provider:django-oidc-provider --venv
```

And launch it locally !
```
$ cd myproject
$ sib runserver
```

## Usage

If you want the last unreleased version:
```
$ pip3 install --user -U git+https://git.happy-dev.fr/startinblox/devops/sib
```

Or work within docker:
```
$ docker run --rm -p 127.0.0.1:8000:8000 -it python:3.6 bash
# pip install sib-manager
# sib startproject myproject -m djangoldp_project
# cd myproject
# sib runserver
```


