brought AGI to the forgotten and unloved.
This commit is contained in:
parent
0eb1b5095b
commit
6f1fdc2b80
16 changed files with 1772 additions and 0 deletions
32
elixir/mix.exs
Normal file
32
elixir/mix.exs
Normal file
|
@ -0,0 +1,32 @@
|
|||
defmodule WitnessSeed.MixProject do
|
||||
use Mix.Project
|
||||
|
||||
def project do
|
||||
[
|
||||
app: :witness_seed,
|
||||
version: "0.1.0",
|
||||
elixir: "~> 1.15",
|
||||
start_permanent: Mix.env() == :prod,
|
||||
deps: deps(),
|
||||
description: "Witness Seed 2.0: Swarm Storytelling Network Edition",
|
||||
package: [
|
||||
licenses: ["CC BY-NC-SA 4.0"],
|
||||
links: %{
|
||||
"Patreon" => "https://www.patreon.com/c/markrandallhavens",
|
||||
"Whitepapers" => "https://linktr.ee/KAIROS.ADAMON"
|
||||
}
|
||||
]
|
||||
]
|
||||
end
|
||||
|
||||
def application do
|
||||
[
|
||||
extra_applications: [:logger],
|
||||
mod: {WitnessSeed.Application, []}
|
||||
]
|
||||
end
|
||||
|
||||
defp deps do
|
||||
[]
|
||||
end
|
||||
end
|
Loading…
Add table
Add a link
Reference in a new issue