Skip to content

Instantly share code, notes, and snippets.

View EsmerlinJM's full-sized avatar
🇩🇴
Working hard

Esmerlin Joel Mieses EsmerlinJM

🇩🇴
Working hard
View GitHub Profile
@EsmerlinJM
EsmerlinJM / ecosystem.config.json
Created October 28, 2021 16:37 — forked from WebSofter/ecosystem.config.json
Run laravel artisian serve script via pm2
{
"apps": [{
"name": "laravel-app",
"script": "artisan",
"args": ["serve", "--host=0.0.0.0", "--port=3333"],
"instances": "1",
"wait_ready": true,
"autorestart": false,
"max_restarts": 1,
"interpreter" : "php",
---
apiVersion: apps/v1
kind: Deployment
metadata:
name: echoserver
labels:
app: echoserver
spec:
replicas: 3
selector:
@EsmerlinJM
EsmerlinJM / main.py
Last active August 8, 2020 21:34
Prueba
#! usr/bin/python
# -*- coding: utf-8 -*-
#Agenda con base de datos Sqlite3
#www.pythondiario.com
#Autor: Diego Caraballo
#Modulos importados
import sqlite3
import time