meme-magic
Version:
An A-Frame, React, Redux front-end with Sessions, Websockets, SQL, and Authentication built into the backend.
14 lines (8 loc) • 327 B
JavaScript
;
import path from 'path';
import chalk from 'chalk';
import Sequelize from 'sequelize';
const memeDB = 'meme-magic';
console.log(chalk.yellow('Hey Rick!'));
const _db = new Sequelize(memeDB, null, null, {host: 'localhost', logging: false, dialect: 'postgres', native: true});
export default _db;