Skip to content

ghostdev08/ffthinky

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

5 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

fethinky

  1. Create a service using Thinky Model
var thinky = require("thinky")({
  host: process.env.RETHINK_HOST || "docker",
  db: "tests"
});

const Business = thinky.createModel("businesses", {
  name: type.string(),
  website: type.string(),
});

import base from "./feathers-base";
import errors from "feathers-errors";
import service from "../src";
import Business from "./business";
import Lander from "./lander";

let _ids = {};
let business = service({
  model: Business
});

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published