Skip to content

Instantly share code, notes, and snippets.

<table style="color: #000000; font-family: -webkit-standard;" border="0" width="600" cellspacing="0" cellpadding="0">
<tbody>
<tr>
<td width="100"><img src="https://i.imgur.com/EVerSZl.png" width="85" height="85" /></td>
<td width="500">
<table border="0" width="500" cellspacing="0" cellpadding="0" bgcolor="#ffffff">
<tbody>
<tr>
<td><span style="font-family: Arial,sans-serif; font-weight: bold;">Domus</span><br /><br /><span style="height: 10px; display: block;"></span><span style="font-family: Arial, sans-serif; font-size: 11px; color: #1c1c1b; font-weight: bold;">+55 (45) <strong><span>3306-5427</span></strong>&nbsp;</span><span style="font-family: Arial,sans-serif; font-size: 11px;">| </span><span style="font-family: Arial, sans-serif; font-size: 11px; color: #1c1c1b; font-weight: bold;">+55 (45) 9 9992-1794&nbsp;</span><br /><a style="font-family: Arial, sans-serif; font-size: 11px; text-decoration: none; color: #1c1c1b; font-weight: bold;" title="Dom
{
"workbench.colorTheme": "Dracula",
"window.zoomLevel": 0,
"editor.fontFamily": "Fira Code",
"editor.fontLigatures": true,
"editor.fontSize": 16,
"editor.lineHeight": 24,
"editor.formatOnSave": true,
"eslint.validate": [
{
{
"execMap": {
"js": "sucrase-node"
}
}
module.exports = {
env: {
es6: true,
},
extends: ["airbnb", "prettier", "prettier/react"],
globals: {
Atomics: "readonly",
SharedArrayBuffer: "readonly",
},
parser: "babel-eslint",
{
"singleQuote": true,
"trailingComma": "es5"
}
root = true
[*]
indent_style = space
indent_size = 2
charset = utf-8
trim_trailing_whitespace = true
insert_final_newline = true
import express from 'express';
import routes from './routes';
class App {
constructor() {
this.server = express();
this.middlewares();
this.routes();
import app from './app';
app.listen(3333);
import { Router } from 'express';
const routes = new Router();
routes.get('/', (req, res) => {
return res.json({ message: 'Hello World' });
});
export default routes;
const { resolve } = require('path');
module.exports = {
config: resolve(__dirname, 'src', 'config', 'database.js'),
'models-path': resolve(__dirname, 'src', 'app', 'models'),
'migrations-path': resolve(__dirname, 'src', 'database', 'migrations'),
'seeders-path': resolve(__dirname, 'src', 'database', 'seeds'),
};