Skip to content

Instantly share code, notes, and snippets.

View oswaldolinhares's full-sized avatar

Oswaldo Linhares oswaldolinhares

View GitHub Profile
@oswaldolinhares
oswaldolinhares / deploy.yml
Created June 25, 2025 01:47
Configuração com o node
service: imaginalle_store
image: oswaldolinhares/imaginalle_store
servers:
web:
hosts:
- xxx.xxx.xxx ip
proxy:
ssl: true
service: imaginalle_store
image: oswaldolinhares/imaginalle_store
servers:
web:
hosts:
- xxx.xxx.xxx meu ip
proxy:
ssl: true
@oswaldolinhares
oswaldolinhares / gist:79e0ac021d9241a5140e
Created January 20, 2016 01:57 — forked from tonymtz/gist:d75101d9bdf764c890ef
Uninstall nodejs from OSX Yosemite
# first:
lsbom -f -l -s -pf /var/db/receipts/org.nodejs.pkg.bom | while read f; do sudo rm /usr/local/${f}; done
sudo rm -rf /usr/local/lib/node /usr/local/lib/node_modules /var/db/receipts/org.nodejs.*
# To recap, the best way (I've found) to completely uninstall node + npm is to do the following:
# go to /usr/local/lib and delete any node and node_modules
cd /usr/local/lib
sudo rm -rf node*