Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/eckelon/custom-trello-views

Simple reactive app to filter trello cards by custom fields
https://github.com/eckelon/custom-trello-views

flask flask-api frontend javascript riotjs rxjs rxjs6

Last synced: 11 days ago
JSON representation

Simple reactive app to filter trello cards by custom fields

Awesome Lists containing this project

README

        

# Custom Trello Views

Simple reactive app to filter trello cards by custom fields.

This is just an experiment to learn how to use [RxJs](https://github.com/ReactiveX/rxjs) with [Riot.js](https://github.com/riot/riot)

# How To

## Back

It's a [Flask](https://github.com/pallets/flask) application:

```
python3 -m venv custom-trello-views-env
source custom-trello-views-env/bin/activate
pip install -r requirements.txt
source load-variables.zsh
gunicorn -b 0.0.0.0:5000 app:app
```

## Front

```
cd js
npm i
npm run start # for starting webpack development mode watching files
npm run build # for building app using webpack production mode
```