Merge branch 'patch-3' into 'master'

Adding listen-port option to `mix mobilizon.instance gen`

See merge request framasoft/mobilizon!525
This commit is contained in:
Thomas Citharel 2020-08-04 21:46:17 +02:00
commit f7aa050d68
1 changed files with 3 additions and 1 deletions

View File

@ -24,6 +24,7 @@ defmodule Mix.Tasks.Mobilizon.Instance do
- `--dbname DBNAME` - the name of the database to use
- `--dbuser DBUSER` - the user (aka role) to use for the database connection
- `--dbpass DBPASS` - the password to use for the database connection
- `--listen-port PORT` - the port the app should listen to, defaults to 4000
"""
use Mix.Task
@ -48,7 +49,8 @@ defmodule Mix.Tasks.Mobilizon.Instance do
dbname: :string,
dbuser: :string,
dbpass: :string,
dbport: :integer
dbport: :integer,
listen_port: :string
],
aliases: [
o: :output,