GithubHelp home page GithubHelp logo

Steemlookup.com

DB

CREATE TABLE steem_posts (
    permlink varchar(2000) PRIMARY KEY,
    author varchar(100),
    title varchar(2000),
    author_reputation int,
    created TIMESTAMP,
    last_visited TIMESTAMP DEFAULT CURRENT_TIMESTAMP,
    last_payout TIMESTAMP,
    tags varchar(2000),
    imageCount int,
    wordCount int,
    body varchar(100000),
    children int,
    active_votes varchar(20000),
    net_votes integer,
    pending_payout_value float,
    lang varchar(20),
    thumbnails varchar(20000)
);

create table steem_user (
    id int,
    name varchar(300) NOT NULL PRIMARY KEY,
    created TIMESTAMP,
    mined boolean,
    post_count int,
    voting_power int,
    last_vote_time TIMESTAMP,
    balance float,
    savings_balance float,
    sbd_balance float,
    savings_sbd_balance float,
    savings_withdraw_requests int,
    vesting_shares float,
    curation_rewards float,
    last_post TIMESTAMP,
    last_root_post TIMESTAMP,
    vesting_balance float,
    reputation bigint,
    witness_votes varchar(2000),
    json_metadata varchar(20000),
    sl_update TIMESTAMP DEFAULT CURRENT_TIMESTAMP
);

create table lookup_user (
    name varchar(100),
    email varchar(100) primary key,
    password varchar(100) not null,
    token varchar(100),
    saved_searches varchar(20000) default null,
    custom_user_list varchar(20000) default null
);

env variables

  • NODE_ENV
  • PSQL_USER
  • PSQL_HOST
  • PSQL_SLAVE_HOST
  • PSQL_DB
  • PSQL_PASS
  • PSQL_PORT
  • REDIS_HOST
  • REDIS_PASS
  • WORKER_ID
  • PULL_DATA

steemlookup's Projects

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.