This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
CREATE TABLE user ( | |
id int NOT NULL AUTO_INCREMENT, | |
name varchar(128) NOT NULL, | |
email varchar(255) NOT NULL, | |
created_at TIMESTAMP DEFAULT CURRENT_TIMESTAMP, | |
updated_at DATETIME DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP, | |
PRIMARY KEY (id) | |
); | |
CREATE TABLE role ( | |
id int NOT NULL AUTO_INCREMENT, |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
service: your-service-name | |
plugins: | |
- serverless-dotenv-plugin | |
- serverless-offline | |
- serverless-plugin-split-stacks | |
custom: | |
dotenv: | |
basePath: environments/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// db/index.js | |
const mysql = require('serverless-mysql')({ | |
config: { | |
host : process.env.DB_ENDPOINT, | |
database : process.env.DB_NAME, | |
user : process.env.DB_USER, | |
password : process.env.DB_PASS | |
} | |
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import React from 'react'; | |
// .... | |
// Import all pages here | |
// .... | |
const routes = [ | |
{ path: '/dashboard', name: 'Dashboard', component: Dashboard }, |