View shimmer.json
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
{ | |
"LightBlock": [ | |
{ | |
"block": "minecraft:sea_lantern", | |
"r": 34, | |
"g": 255, | |
"b": 200, | |
"a": 255, | |
"radius": 7 | |
}, |
View export-directus.js
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
//show tables; | |
//SHOW FIELDS FROM directus_users | |
var fs = require('fs'); | |
var mysql = require('mysql'); | |
var connection = mysql.createConnection({ | |
host : 'localhost', | |
user : 'docker', |
View index.html
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
const gulp = require('gulp'); | |
const imagemin = require('gulp-imagemin'); | |
const uglify = require('gulp-uglify'); | |
const sass = require('gulp-sass'); | |
const concat = require('gulp-concat'); | |
const browserSync = require('browser-sync').create(); | |
gulp.task('message', () => { | |
return console.log("Hello World!"); | |
}) |