Skip to content

Instantly share code, notes, and snippets.

View acapuster's full-sized avatar

Mordecai Wiredu acapuster

View GitHub Profile
@acapuster
acapuster / erp
Last active August 29, 2015 14:23
Setup-erp
==================================================================
Installing ERP Next:
-> apt-get update
-> wget https://raw.githubusercontent.com/frappe/bench/master/install_scripts/setup_frappe.sh
-> sudo bash setup_frappe.sh --setup-production
-> Copy ~/frappe_passwords.txt
-> Now configure nginx and reload
SSL
1. Generate a key

Rails naming conventions

General Ruby conventions

Class names are CamelCase.

Methods and variables are snake_case.

Methods with a ? suffix will return a boolean.