https://github.com/leblanc-simon/taiga-contrib-fan
Add your favorite projects in the Taiga dashbord.
https://github.com/leblanc-simon/taiga-contrib-fan
taiga
Last synced: about 1 month ago
JSON representation
Add your favorite projects in the Taiga dashbord.
- Host: GitHub
- URL: https://github.com/leblanc-simon/taiga-contrib-fan
- Owner: leblanc-simon
- License: mit
- Created: 2018-09-25T02:01:55.000Z (about 7 years ago)
- Default Branch: master
- Last Pushed: 2018-09-25T02:12:07.000Z (about 7 years ago)
- Last Synced: 2025-01-10T01:51:42.929Z (9 months ago)
- Topics: taiga
- Language: Python
- Size: 5.86 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# taiga-contrib-fan
Add your favorite projects in the dashbord.
## Installation
```bash
cd /home/taiga
mkdir contrib
cd contrib
git clone https://github.com/leblanc-simon/taiga-contrib-fan.git
```### Back
```bash
cd /home/taiga/contrib/taiga-contrib-fan/back/taiga_contrib_fan
workon taiga
pip install -e .
```Edit your `/home/taiga/taiga-back/settings/local.py` and add :
```python
INSTALLED_APPS += ["taiga_contrib_fan"]
```### Front
```bash
cd /home/taiga/contrib/taiga-contrib-fan/front/taiga-contrib-fan
npm install
gulp build
cd /home/taiga/taiga-front-dist/dist/
mkdir plugins
cd plugins
ln -s /home/taiga/contrib/taiga-contrib-fan/front/taiga-contrib-fan/dist taiga-contrib-fan
```Edit your `/home/taiga/taiga-front-dist/dist/conf.json` and add :
```js
contribPlugins = [
"/plugins/taiga-contrib-fan/taiga-contrib-fan.json"
]
```