Skip to content

Instantly share code, notes, and snippets.

@silky
Forked from sordina/ci
Created August 16, 2014 06:50
Show Gist options
  • Save silky/383cab58b9c86d8e1925 to your computer and use it in GitHub Desktop.
Save silky/383cab58b9c86d8e1925 to your computer and use it in GitHub Desktop.
#!/bin/bash
cabal init \
--version="0.1.0.0" \
--non-interactive \
--no-comments \
--minimal \
--license=MIT \
--author="Lyndon Maydwell" \
--email=maydwell@gmail.com \
--homepage=http://github.com/sordina/$(basename $(pwd)) \
--package-name="$(basename $(pwd))" \
--synopsis="$(basename $(pwd)) Project..." \
--language=Haskell2010 \
--is-library \
--is-executable \
--main-is=Main.hs \
--dependency=base \
--source-dir=src \
--verbose
mkdir src
cat > src/Main.hs <<EOF
module Main where
main :: IO ()
main = print "hello world"
EOF
cat > .gitignore <<EOF
dist/
EOF
cat > LICENSE <<EOF
The MIT License (MIT)
Copyright (c) <year> <copyright holders>
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.
EOF
cat > README.md <<EOF
# $(basename $(pwd))
A work in progress...
EOF
git init
git add -A .
git commit -m "Initial Commit"
git remote add origin "https://github.com/sordina/$(basename $(pwd))"
cabal configure
cabal run
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment