Add all
This commit is contained in:
parent
b35e18cd20
commit
82f55f7afe
80 changed files with 6687 additions and 5 deletions
|
@ -22,6 +22,18 @@ config :nulla, NullaWeb.Endpoint,
|
|||
pubsub_server: Nulla.PubSub,
|
||||
live_view: [signing_salt: "rmaJ4fGm"]
|
||||
|
||||
# Snowflake configuration
|
||||
config :nulla, :snowflake, worker_id: 1
|
||||
|
||||
# Instance configuration
|
||||
config :nulla, :instance,
|
||||
name: "Nulla",
|
||||
description: "Freedom Social Network",
|
||||
registration: false,
|
||||
max_characters: 5000,
|
||||
max_upload_size: 50,
|
||||
api_limit: 100
|
||||
|
||||
# Configures the mailer
|
||||
#
|
||||
# By default it uses the "Local" adapter which stores the emails
|
||||
|
|
|
@ -1,5 +1,8 @@
|
|||
import Config
|
||||
|
||||
# Only in tests, remove the complexity from the password hashing algorithm
|
||||
config :bcrypt_elixir, :log_rounds, 1
|
||||
|
||||
# Configure your database
|
||||
#
|
||||
# The MIX_TEST_PARTITION environment variable can be used
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue