Skip to content

Commit

Permalink
Add gigalixir service. (#103)
Browse files Browse the repository at this point in the history
* Add gigalixir service.
* ask user for fqdn since it is simpler than asking for the subdomain.
* make it just like heroku
* update instructions

Co-authored-by: Ole Michaelis <Ole.Michaelis@googlemail.com>
  • Loading branch information
jesseshieh and OleMchls committed May 27, 2020
1 parent bfbc0a2 commit c2c7d80
Show file tree
Hide file tree
Showing 4 changed files with 41 additions and 0 deletions.
36 changes: 36 additions & 0 deletions services/gigalixir/config.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
{
"config": {
"name": "gigalixir",
"label": "Gigalixir",
"description": "Use Gigalixir as your web host.",
"category": "infrastructure"
},
"fields": [
{
"name": "apexdomain",
"label": "Gigalixir Apex App Name",
"description": "Your Gigalixir Apex DNS name.",
"example": "example.com.gigalixirdns.com"
},
{
"name": "wwwdomain",
"label": "Gigalixir WWW App Name",
"description": "Your Gigalixir WWW DNS name.",
"example": "www.example.com.gigalixirdns.com"
}
],
"records": [
{
"type": "ALIAS",
"content": "{{apexdomain}}",
"ttl": 3600
},
{
"name": "www",
"type": "CNAME",
"content": "{{wwwdomain}}",
"ttl": 3600
}
]
}

4 changes: 4 additions & 0 deletions services/gigalixir/instructions.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
You must also add your custom domain to your gigalixir app with
`gigalixir domains:add www.{{domain}}`
`gigalixir domains:add {{domain}}`

Binary file added services/gigalixir/logo.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1 change: 1 addition & 0 deletions services/gigalixir/readme.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Elixir's Platform-as-a-Service. The only platform that fully supports Elixir.

0 comments on commit c2c7d80

Please sign in to comment.