Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/eckelon/custom-trello-views
- Owner: eckelon
- Created: 2018-12-24T10:05:27.000Z (about 6 years ago)
- Default Branch: master
- Last Pushed: 2022-12-08T08:49:00.000Z (about 2 years ago)
- Last Synced: 2024-04-17T12:06:04.250Z (10 months ago)
- Topics: flask, flask-api, frontend, javascript, riotjs, rxjs, rxjs6
- Language: JavaScript
- Size: 1.67 MB
- Stars: 3
- Watchers: 1
- Forks: 0
- Open Issues: 18
-
Metadata Files:
- Readme: README.md
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
```