Skip to content

Instantly share code, notes, and snippets.

View admench's full-sized avatar
🔬
Testing

Adam Menczykowski admench

🔬
Testing
View GitHub Profile
@admench
admench / site
Last active September 13, 2015 14:50
Pre configured Nginx site for Laravel Forge provisioned servers to be used for Craft CMS based sites
server {
listen 80;
server_name domain;
root /home/forge/domain/public;
# FORGE SSL (DO NOT REMOVE!)
# ssl on;
# ssl_certificate;
# ssl_certificate_key;
@admench
admench / site-no-www
Last active September 13, 2015 14:50
Pre configured Nginx site for Laravel Forge provisioned servers with www redirect to non-www host to be used for Craft CMS based sites
server {
listen 80;
server_name www.domain;
return 301 $scheme://domain$request_uri;
}
server {
listen 80;
server_name domain;
root /home/forge/domain/public;

Estimation

This document is an attempt to pin down all the things you don't think about when quoting for a project, and hopefully provide a starting point for some kind of framework to make quoting, working and delivering small-medium jobs more predictable and less stressful.

Quoting

The hardest bit of any job, and lots of pitfalls

Estimating the work

  • the actual work of what you see on screen will only be a fraction of the work to do