toctoc

toctoc

    ›Setup

    Setup

    • Installation

    Concepts

    • Functional Model
    • Login
    • Token
    Edit

    Installation

    toctoc is composed by multiple modules:

    • toctoc-core: defines the basic abstractions
    • toctoc-slick-postgresql: provides slick-specific implementations for Postgres databases
    • toctoc-slick-mysql: provides slick-specific implementations for MySql databases
    • toctoc-quill: provides quill-specific implementations

    You can cherry-pick the modules according to the needs of your project. For example:

    val V = new {
      val toctoc = "0.2.0"
    }
    
    libraryDependencies ++= List(
      "io.buildo" %% "toctoc-core" % V.toctoc,
      "io.buildo" %% "toctoc-slick-postgresql" % V.toctoc
    )
    

    Snapshot versions

    We publish a snapshot version on every merge on master.

    The latest snapshot version is 0.2.0+26-f41d3592-SNAPSHOT and you can use it to try the latest unreleased features. For example:

    val V = new {
      val toctoc = "0.2.0+26-f41d3592-SNAPSHOT"
    }
    
    libraryDependencies ++= List(
      "io.buildo" %% "toctoc-core" % V.toctoc,
      "io.buildo" %% "toctoc-slick-postgresql" % V.toctoc
    )
    
    Functional Model →
    • Snapshot versions
    toctoc
    Docs
    InstallationConcepts
    More
    TwitterGitHubStar
    Copyright © 2019 buildo