https://github.com/bisohns/pipelining-pycon-talk
A talk on `End to End Workflows` presented at Pycon 2019
https://github.com/bisohns/pipelining-pycon-talk
Last synced: 4 months ago
JSON representation
A talk on `End to End Workflows` presented at Pycon 2019
- Host: GitHub
- URL: https://github.com/bisohns/pipelining-pycon-talk
- Owner: bisohns
- Created: 2019-10-28T21:29:36.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2019-10-31T12:48:03.000Z (over 5 years ago)
- Last Synced: 2025-03-09T03:11:13.238Z (4 months ago)
- Language: Python
- Size: 767 KB
- Stars: 2
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# pipelining-pycon-talk
This repo contains the source code of the demos of the talk on `End to End Workflows` presented at Pycon Nigeria 2019
View the [Powerpoint presentation](https://drive.google.com/open?id=17-w5oIWQ-O4aVWivOGecywH2eb3IHn9jx-l5fxwnR6g)[](https://travis-ci.com/bisoncorps/pipelining-pycon-talk)
[](https://pycon-2019.herokuapp.com)
[](https://badge.fury.io/py/pycon)
## Installation
Installation can be done from [Test PyPi](https://test.pypi.org)
```bash
pip install --index-url https://test.pypi.org/simple/ pycon-ng2019
```
### Development
- Install Development dependencies. Update the settings in the [manage.py](https://github.com/bisoncorps/pipelining-pycon-talk/blob/a3067872d7c8bb4f9d5f62273a71946691d69131/manage.py#L8) file to `django.settings.common````bash
# install Dev dependencies
pip install -r dev-requirements.txt
```- Start Server
```bash
python manage.py runserver
```## Usage
### For cli demo
```python
import pycon
pycon.demo()
```
### Django App
- Add `pycon` to `installed_apps`
- Add `path('', include('pycon.urls'))` to urls file
Pycon-NG page should be available in http://localhost:8000/pycon