Current section
8 Versions
Jump to
Current section
8 Versions
Compare versions
3
files changed
+37
additions
-5
deletions
| @@ -0,0 +1,32 @@ | |
| 1 | + # This file is responsible for configuring your application |
| 2 | + # and its dependencies with the aid of the Mix.Config module. |
| 3 | + use Mix.Config |
| 4 | + |
| 5 | + config :lifx, tcp_server: true, tcp_port: 8800 |
| 6 | + |
| 7 | + # This configuration is loaded before any dependency and is restricted |
| 8 | + # to this project. If another project depends on this project, this |
| 9 | + # file won't be loaded nor affect the parent project. For this reason, |
| 10 | + # if you want to provide default values for your application for |
| 11 | + # 3rd-party users, it should be done in your "mix.exs" file. |
| 12 | + |
| 13 | + # You can configure for your application as: |
| 14 | + # |
| 15 | + # config :lifx_client, key: :value |
| 16 | + # |
| 17 | + # And access this configuration in your application as: |
| 18 | + # |
| 19 | + # Application.get_env(:lifx_client, :key) |
| 20 | + # |
| 21 | + # Or configure a 3rd-party app: |
| 22 | + # |
| 23 | + # config :logger, level: :info |
| 24 | + # |
| 25 | + |
| 26 | + # It is also possible to import configuration files, relative to this |
| 27 | + # directory. For example, you can emulate configuration per environment |
| 28 | + # by uncommenting the line below and defining dev.exs, test.exs and such. |
| 29 | + # Configuration from the imported file will override the ones defined |
| 30 | + # here (which is why it is important to import them last). |
| 31 | + # |
| 32 | + # import_config "#{Mix.env}.exs" |
| @@ -68,8 +68,8 @@ | |
| 68 68 | <<"priv/static/vendor/jquery-colorpickersliders-master/libraries/tinycolor.js">>, |
| 69 69 | <<"priv/static/vendor/nvd3/d3.min.js">>, |
| 70 70 | <<"priv/static/vendor/nvd3/nv.d3.min.css">>, |
| 71 | - <<"priv/static/vendor/nvd3/nv.d3.min.js">>,<<"mix.exs">>,<<"README.md">>, |
| 72 | - <<"LICENSE.TXT">>]}. |
| 71 | + <<"priv/static/vendor/nvd3/nv.d3.min.js">>,<<"config/config.exs">>, |
| 72 | + <<"mix.exs">>,<<"README.md">>,<<"LICENSE.TXT">>]}. |
| 73 73 | {<<"licenses">>,[<<"MIT License">>]}. |
| 74 74 | {<<"links">>, |
| 75 75 | [{<<"Docs">>,<<"https://github.com/NationalAssociationOfRealtors/lifx">>}, |
| @@ -85,4 +85,4 @@ | |
| 85 85 | {<<"name">>,<<"poison">>}, |
| 86 86 | {<<"optional">>,false}, |
| 87 87 | {<<"requirement">>,<<"~> 2.1">>}]]}. |
| 88 | - {<<"version">>,<<"0.1.1">>}. |
| 88 | + {<<"version">>,<<"0.1.2">>}. |
| @@ -3,7 +3,7 @@ defmodule Lifx.Mixfile do | |
| 3 3 | |
| 4 4 | def project do |
| 5 5 | [app: :lifx, |
| 6 | - version: "0.1.1", |
| 6 | + version: "0.1.2", |
| 7 7 | elixir: "~> 1.3", |
| 8 8 | build_embedded: Mix.env == :prod, |
| 9 9 | start_permanent: Mix.env == :prod, |
| @@ -28,7 +28,7 @@ defmodule Lifx.Mixfile do | |
| 28 28 | def package do |
| 29 29 | [ |
| 30 30 | name: :lifx, |
| 31 | - files: ["lib", "priv", "mix.exs", "README*", "LICENSE*"], |
| 31 | + files: ["lib", "priv", "config", "mix.exs", "README*", "LICENSE*"], |
| 32 32 | maintainers: ["Christopher Steven Coté"], |
| 33 33 | licenses: ["MIT License"], |
| 34 34 | links: %{"GitHub" => "https://github.com/NationalAssociationOfRealtors/lifx", |