Coder Social home page Coder Social logo

kanban's Introduction

kanban

A comprehensive task board

tl;dr

docker-compose up
npm i && npm run db:reset && npm run start:dev
// Go to http://localhost:3000/graphql

queries example

npm run start:dev

# GET users
query {
  authors {
    id
    name
  }
}

# GET all info for a user
query {
  author(id: "") { <<-- PUT one id from the previous list
    id
    name
    boards {
      id
      name
      members {
        id
        name
        admin
      }
      columns {
        name
        status
        tasks {
          title
          description
          status
          assigned {
            name
          }
        }
      }
    }
  }
}

recommended env vars

MYSQL_ROOT_PASSWORD=
MYSQL_USER=
MYSQL_PASSWORD=
MYSQL_DATABASE=
DATABASE_URL=mysql://user:[email protected]:3306/kanban
FIREBASE_DATABASE_URL=https://{{site}}.firebaseio.com
KANBAN_DOMAIN=

type first approach

By default prisma register types under node_modules. To handle traceability print the model under the generate/index.ts file.

about lack of services

Prisma is able to autocomplete all the services.

Use fixed versions instead of latest versions to prevent Errors on start.

start local env

start the database

docker-compose up

update the environment

Drop, migrate, update definitions and execute the seeds with a single command

npm run db:reset

firebase link

Enable firebase auth

npm install -g firebase-tools
firebase login
firebase init

kanban's People

Contributors

niltron avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.