项目作者: sdabhi23

项目描述 :
An idea management tool, inspired from kanban boards and integrated with GitHub
高级语言: JavaScript
项目地址: git://github.com/sdabhi23/rappel.git
创建时间: 2021-01-05T20:22:40Z
项目社区:https://github.com/sdabhi23/rappel

开源协议:Apache License 2.0

下载


Rappel

Deploy to DO

An idea management tool, inspired from kanban boards and integrated with GitHub

This repo only contains the backend for the app. Please check sdabhi23/rappel-ui

Features

  • Automatically sync your GitHub repos
  • Sort the repos into 5 categories:
    1. Backlog
    2. Active
    3. Work In Progress
    4. Done
    5. Archive
  • Add working notes for the repos directly inside their cards

Roadmap

  • Add notes for new ideas
  • Filter repos
  • Search repos
  • Hide stale repos into a separate tab
  • Automatically delete repos when they are deleted from GitHub
  • Integration with PyPI and NPM
  • Integration with GitLab

Run locally using Docker

  • Generate dependency lists from Pipfile.lock using jq tool

    1. jq -r '.default | to_entries[] | .key + .value.version' Pipfile.lock > requirements.txt
    2. jq -r '.develop | to_entries[] | .key + .value.version' Pipfile.lock > requirements-dev.txt
  • Run the app

    1. docker build -t rappel-tst .
    2. docker-compose up -d
    3. docker run -d --name rappel -p 80:80 --env-file sample.env rappel-tst
    4. docker exec -it rappel python manage.py migrate

The api docs should be available at http://localhost/api/schema/redoc

Run locally using Pipenv

  • Install dependencies using Pipenv

    1. pipenv install
  • Run the app

    1. pipenv shell
    2. cd api/
    3. python manage.py migrate
    4. python manage.py runserver

The api docs should be available at http://localhost:8000/api/schema/redoc

Screenshots

  • API Docs

    api-docs

License

  1. Copyright 2021 Shrey Dabhi
  2. Licensed under the Apache License, Version 2.0 (the "License");
  3. you may not use this file except in compliance with the License.
  4. You may obtain a copy of the License at
  5. http://www.apache.org/licenses/LICENSE-2.0
  6. Unless required by applicable law or agreed to in writing, software
  7. distributed under the License is distributed on an "AS IS" BASIS,
  8. WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  9. See the License for the specific language governing permissions and
  10. limitations under the License.