Skip to content

Instantly share code, notes, and snippets.

Mac OS X 10.10 Yosemite

Custom recipe to get OS X 10.10 Yosemite running from scratch, setup applications and developer environment. I use this gist to keep track of the important software and steps required to have a functioning system after a semi-annual fresh install. On average, I reinstall each computer from scratch every 6 months, and I do not perform upgrades between distros.

This keeps the system performing at top speeds, clean of trojans, spyware, and ensures that I maintain good organizational practices for my content and backups. I highly recommend this.

You are encouraged to fork this and modify it to your heart's content to match your own needs.

Install Software

(env)webmaster@textr:~/text/apps$ django-admin.py compilemessages
CommandError: This script should be run from the Django Git checkout or your project or app tree, or with the settings module specified.
(env)webmaster@textr:~/text/apps$ cd ../
(env)webmaster@textr:~/text$ django-admin.py compilemessages
CommandError: This script should be run from the Django Git checkout or your project or app tree, or with the settings module specified.
(env)webmaster@textr:~/text$ cd apps/
(env)webmaster@textr:~/text/apps$ django-admin.py makemessages -l en
CommandError: This script should be run from the Django Git tree or your project or app tree. If you did indeed run it from the Git checkout or your project or application, maybe you are just missing the conf/locale (in the django tree) or locale (for project and application) directory? It is not created automatically, you have to create it by hand if you want to enable i18n for your project or application.
(env)webmaster@textr:~/text/apps$
@pinnokio
pinnokio / gist:8844203
Last active August 29, 2015 13:56
Textr error message
% fab newtest rebuild_db
[textr.no-ip.org:2229] Executing task 'rebuild_db'
[textr.no-ip.org:2229] run: mysql -uroot -e "drop database if exists textr_db;"
[textr.no-ip.org:2229] run: mysql -uroot -e "create database if not exists textr_db character set utf8 collate utf8_general_ci;"
[textr.no-ip.org:2229] run: python manage.py syncdb --noinput
[textr.no-ip.org:2229] out: Syncing...
[textr.no-ip.org:2229] out: Creating tables ...
[textr.no-ip.org:2229] out: Creating table auth_permission
[textr.no-ip.org:2229] out: Creating table auth_group_permissions
[textr.no-ip.org:2229] out: Creating table auth_group
upstream uwsgi {
ip_hash;
server 127.0.0.1:40000;
}
server {
listen 80;
server_name www.domain.com;
root /sites/mysite/;
access_log /sites/mysite/log/nginx/access.log;
from geventwebsocket.handler import WebSocketHandler
from gevent.pywsgi import WSGIServer
from flask import Flask, request, render_template
app = Flask(__name__)
@app.route('/')
def index():
return render_template('index.html')