Quick start
The fastest way to deploy Notifico is Docker. We will use RabbitMQ as an AMQP broker and SQLite as a database.
Run in your terminal
Configure your credentials
First, you need to create a credential file that will provide all the necessary credentials. In this example, we use SMTP server, because it is the easiest to configure.
Open a file named credentials.toml
in example directory and replace SMTP credentials with yours:
[smtp.mail1]
tls = true # The flag indicating whether to use TLS (STARTTLS is supported, too)
host = "smtp.example.com" # The address of your SMTP server.
port = 587 # The port number used by your SMTP server (commonly 25, 465, or 587).
username = "your_username@example.com" # The username for authenticating with the SMTP server.
password = "your_password" # The password associated with the SMTP username.
Example for Gmail
To use your Google account with SMTP, especially when using third-party applications like Notifico, it's recommended to create an App Password. This is a special password that allows the app to access your Google account securely without using your main account password. Here's how you can create an App Password for your Google account:
-
Enable 2-Step Verification: Before you can create an App Password, you need to have 2-Step Verification enabled on your Google account. You can enable it by going to your Google Account settings, selecting "Security," and then following the instructions under "2-Step Verification."
-
Create an App Password:
- Go to https://myaccount.google.com/apppasswords
- Enter a new name for your App Password, for example
Notifico
. - Google will provide you with a 16-character password. This is your App Password.
- Use the App Password: Replace the password field in your credentials.toml file with the App Password you just generated. It should look something like this:
Run using docker compose
This command will download Notifico, start the dependencies and run all the necessary services.
Now, Notifico is up and running and the admin panel will be available here: http://localhost:8000.
Now, you can create your Event, Template and Pipeline.