Skip to content

Instantly share code, notes, and snippets.

View ArmandoHerra's full-sized avatar
💻
Building...

Armando Alexis Herra Cortez ArmandoHerra

💻
Building...
View GitHub Profile
@ArmandoHerra
ArmandoHerra / amazon-cloudwatch-agent.json
Last active November 9, 2024 02:10
Complete CloudWatch Agent Config Example
{
"agent": {
"metrics_collection_interval": 10,
"logfile": "/opt/aws/amazon-cloudwatch-agent/logs/amazon-cloudwatch-agent.log"
},
"metrics": {
"namespace": "MinecraftServerCustomMetrics",
"metrics_collected": {
"disk": {
"resources": [
@ArmandoHerra
ArmandoHerra / .eslintrc.js
Created September 11, 2019 05:08
Eslint configuration for Vue/Nuxt projects.
module.exports = {
root: true,
env: {
browser: true,
node: true,
},
parserOptions: {
parser: "babel-eslint",
sourceType: "module"
},
@ArmandoHerra
ArmandoHerra / nuxt.config.js
Created April 24, 2019 12:55
Nuxt Config Example
const pkg = require('./package')
module.exports = {
mode: 'universal',
/*
** Headers of the page
*/
head: {