Skip to content

Instantly share code, notes, and snippets.

@TitasGailius
Last active June 24, 2020 04:50
Show Gist options
  • Save TitasGailius/4b8721604ade4790a542029e65fa6dde to your computer and use it in GitHub Desktop.
Save TitasGailius/4b8721604ade4790a542029e65fa6dde to your computer and use it in GitHub Desktop.
require('dotenv').config();
const env = process.env;
require('laravel-echo-server').run({
authHost: env.APP_URL,
devMode: env.APP_DEBUG,
database: "redis",
databaseConfig: {
redis: {
host: env.REDIS_HOST,
port: env.REDIS_PORT,
}
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment