Skip to content

Commit

Permalink
Initialising repository
Browse files Browse the repository at this point in the history
  • Loading branch information
brendanhay committed Sep 22, 2015
0 parents commit deafb4e
Show file tree
Hide file tree
Showing 8 changed files with 515 additions and 0 deletions.
37 changes: 37 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
# Haskell
.conf
*.o
*.hi
*.chi
*.chs.h
*.imports
cabal.sandbox.config
cabal.config

# Dirs
.cabal-sandbox
dist
vendor
.vagrant.d
.stack-work
bin

# CTAGS
TAGS
tags

# Emacs/Vim
*~
*#
.#*
\#*#
.*.sw[a-z]
*.un~
*.org
.projectile

# OSX
.DS_Store

# Certificates
*.pem
373 changes: 373 additions & 0 deletions LICENSE

Large diffs are not rendered by default.

20 changes: 20 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
# Gozen

* [Description](#description)
* [Contribute](#contribute)
* [Licence](#licence)


## Description

> TODO

## Contribute

For any problems, comments, or feedback please create an issue [here on GitHub](https://github.com/brendanhay/gozen/issues).


## Licence

Gozen is released under the [Mozilla Public License Version 2.0](http://www.mozilla.org/MPL/).
2 changes: 2 additions & 0 deletions Setup.hs
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
import Distribution.Simple
main = defaultMain
11 changes: 11 additions & 0 deletions share/library.mk
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
SHELL := /usr/bin/env bash
NAME ?= $(notdir $(CURDIR:a/%=%))
VERSION ?= $(shell sed -n 's/^version: *\(.*\)$$/\1/p' $(NAME).cabal)

default:

sdist:
cabal sdist

upload:
cabal upload dist/$(NAME)-$(VERSION).tar.gz
62 changes: 62 additions & 0 deletions stack-7.10.2.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,62 @@
resolver: nightly-2015-09-10
flags: {}
extra-deps:
- groom-0.1.2
packages:
- core
- test
- amazonka
- examples
- amazonka-autoscaling
- amazonka-cloudformation
- amazonka-cloudfront
- amazonka-cloudhsm
- amazonka-cloudsearch
- amazonka-cloudsearch-domains
- amazonka-cloudtrail
- amazonka-cloudwatch
- amazonka-cloudwatch-logs
- amazonka-codecommit
- amazonka-codedeploy
- amazonka-codepipeline
- amazonka-cognito-identity
- amazonka-cognito-sync
- amazonka-config
- amazonka-datapipeline
- amazonka-devicefarm
- amazonka-directconnect
- amazonka-ds
- amazonka-dynamodb
- amazonka-dynamodb-streams
- amazonka-ec2
- amazonka-ecs
- amazonka-efs
- amazonka-elasticache
- amazonka-elasticbeanstalk
- amazonka-elastictranscoder
- amazonka-elb
- amazonka-emr
- amazonka-glacier
- amazonka-iam
- amazonka-importexport
- amazonka-kinesis
- amazonka-kms
- amazonka-lambda
- amazonka-ml
- amazonka-opsworks
- amazonka-rds
- amazonka-redshift
- amazonka-route53
- amazonka-route53-domains
- amazonka-s3
- amazonka-s3-encryption
- amazonka-sdb
- amazonka-ses
- amazonka-sns
- amazonka-sqs
- amazonka-ssm
- amazonka-storagegateway
- amazonka-sts
- amazonka-support
- amazonka-swf
- amazonka-workspaces
5 changes: 5 additions & 0 deletions stack-7.8.4.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
resolver: lts-2.21
flags: {}
extra-deps: []
packages:
- core
5 changes: 5 additions & 0 deletions stack.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
resolver: nightly-2015-09-10
flags: {}
extra-deps: []
packages:
- core

0 comments on commit deafb4e

Please sign in to comment.