Update stack.yaml to lts-8.12, change default server IP

master
Levi Pearson 2017-05-18 22:05:51 -06:00
parent bc41947b18
commit 8762f15a41
2 changed files with 3 additions and 3 deletions

View File

@ -12,7 +12,7 @@ main =
let let
ircConf = ircConf =
IrcConfig { _ircPort = "6665" IrcConfig { _ircPort = "6665"
, _ircHost = Host "127.0.0.1" , _ircHost = Host "0.0.0.0"
, _ircHostName = "pinealservo.com" , _ircHostName = "pinealservo.com"
, _ircMotd = ["Welcome to the IRC Server!"] , _ircMotd = ["Welcome to the IRC Server!"]
, _ircPass = Nothing , _ircPass = Nothing

View File

@ -1,14 +1,14 @@
# For more information, see: http://docs.haskellstack.org/en/stable/yaml_configuration.html # For more information, see: http://docs.haskellstack.org/en/stable/yaml_configuration.html
# Specifies the GHC version and set of packages available (e.g., lts-3.5, nightly-2015-09-21, ghc-7.10.2) # Specifies the GHC version and set of packages available (e.g., lts-3.5, nightly-2015-09-21, ghc-7.10.2)
resolver: lts-5.0 resolver: lts-8.12
# Local packages, usually specified by relative directory name # Local packages, usually specified by relative directory name
packages: packages:
- '.' - '.'
# Packages to be pulled from upstream that are not in the resolver (e.g., acme-missiles-0.3) # Packages to be pulled from upstream that are not in the resolver (e.g., acme-missiles-0.3)
extra-deps: [] extra-deps: [pipes-network-0.6.4.1]
# Override default flag values for local packages and extra-deps # Override default flag values for local packages and extra-deps
flags: {} flags: {}