Skip to content

Instantly share code, notes, and snippets.

View cagatay's full-sized avatar

Çağatay Yüksel cagatay

View GitHub Profile
0xBbfb26dFDD83050EfA813dEDDB47A0e5cbf28DF9
@cagatay
cagatay / greeter.proto
Last active October 27, 2016 09:54
Example server/client for gRPC presentation in Go Meetup Berlin October 2016
syntax = "proto3";
option go_package = "sisu.sh/go/pb";
message Baby {
// Name of the baby
string name = 1;
// Expected birthdate
@cagatay
cagatay / ubuntu-server-django-guide.rst
Created August 9, 2012 16:41 — forked from epicserve/ubuntu-server-django-guide.rst
Ubuntu Server Setup Guide for Django Websites

Ubuntu Server Setup Guide for Django Websites

This guide is a walk-through on how to setup Ubuntu Server for hosting Django websites. The Django stack that will be used in this guide is Ubuntu_, Nginx_, Gunicorn_ and Postgres_. This stack was chosen solely from the reading I've done and talking to other Django developers in order to get their recommendations. This stack seems to be one of the latest "standard" stacks for Django deployment. This guide also assumes that you're familiar with Ubuntu server administration and Django. I needed an example site for this guide so I chose to use my Django Base Site which is available on Github.

I would also like to thank Ben Claar, Adam Fast, Jeff Triplett and Frank Wiles for their suggestions and input on this guide.

@cagatay
cagatay / app.yaml
Created October 18, 2011 19:14 — forked from darktable/app.yaml
App.yaml designed for serving a static site on Google App Engine (Python). Copy your static html and files into a folder called "static" next to app.yaml. Contains a bunch of mimetype declarations from html5boilerplate's .htaccess. May not be necessary
application: your-app-name
version: 1
runtime: python
api_version: 1
default_expiration: "30d"
handlers:
- url: /(.*\.(appcache|manifest))
mime_type: text/cache-manifest