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

This commit is contained in:
yalh 2020-08-04 21:46:17 +02:00 committed by Thomas Citharel
parent 3f4bba5261
commit 660eaf094c
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 - `--dbname DBNAME` - the name of the database to use
- `--dbuser DBUSER` - the user (aka role) to use for the database connection - `--dbuser DBUSER` - the user (aka role) to use for the database connection
- `--dbpass DBPASS` - the password 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 use Mix.Task
@ -48,7 +49,8 @@ defmodule Mix.Tasks.Mobilizon.Instance do
dbname: :string, dbname: :string,
dbuser: :string, dbuser: :string,
dbpass: :string, dbpass: :string,
dbport: :integer dbport: :integer,
listen_port: :string
], ],
aliases: [ aliases: [
o: :output, o: :output,