-
Install the supported version of Python, Virtualenv, Git and Poetry on your Fedora Linux installation.
$ sudo dnf install python3
$ sudo dnf install virtualenv
$ sudo dnf install git
$ sudo dnf install poetry
-
Clone the repository to your local storage and make it your present working directory.
$ git clone https://github.com/fedora-infra/webhook-to-fedora-messaging.git
$ cd webhook-to-fedora-messaging
-
Establish a virtual environment within the directory and activate for installing dependencies.
$ virtualenv venv
$ source venv/bin/activate
-
Check the validity of the project configuration file and begin install the dependencies.
(venv) $ poetry check
(venv) $ poetry install
- Make sure that the virtual environment that was recently created was activated.
$ cd webhook-to-fedora-messaging
$ source venv/bin/activate
- Make a copy of the stored
logging.yaml.example
and change it to reflect your custom logging settings.(venv) $ cp logging.yaml.example logging.yaml
(venv) $ nano logging.yaml
- Make a copy of the stored
config.example
and change it to reflect your custom application settings.(venv) $ cp config.example config
(venv) $ nano config
- Start the application with the
--help
flag to understand how the application command line works.Example output(venv) $ w2fm --help
Usage: w2fm [OPTIONS] COMMAND [ARGS]... Options: -c, --conf PATH Read configuration from the specified module --version Show the version and exit. --help Show this message and exit. Commands: setup Setup the database schema in the specified environment
- While pointing towards the edited config file, run the
setup
command to initialize the database.Example output(venv) $ w2fm --conf config setup
The database has been created
- Note that the same command can be used to upgrade and downgrade through database schema revisions.
- Once the database is created, run the following command to invoke the service application.
Example output
$ (venv) uvicorn \ --factory "webhook_to_fedora_messaging.main:create_app" \ --log-config logging.yaml --host 0.0.0.0 \ --port 8080 \ --workers 4
This command will make[W2FM] [2024-08-14 01:56:48 +0530] [INFO] Uvicorn running on http://0.0.0.0:8080 (Press CTRL+C to quit) [W2FM] [2024-08-14 01:56:48 +0530] [INFO] Started parent process [11076] [W2FM] [2024-08-14 01:56:49 +0530] [INFO] Started server process [11081] [W2FM] [2024-08-14 01:56:49 +0530] [INFO] Waiting for application startup. [W2FM] [2024-08-14 01:56:49 +0530] [INFO] Started server process [11080] [W2FM] [2024-08-14 01:56:49 +0530] [INFO] Waiting for application startup. [W2FM] [2024-08-14 01:56:49 +0530] [INFO] Application startup complete. [W2FM] [2024-08-14 01:56:49 +0530] [INFO] Application startup complete. [W2FM] [2024-08-14 01:56:49 +0530] [INFO] Started server process [11079] [W2FM] [2024-08-14 01:56:49 +0530] [INFO] Waiting for application startup. [W2FM] [2024-08-14 01:56:49 +0530] [INFO] Application startup complete. [W2FM] [2024-08-14 01:56:49 +0530] [INFO] Started server process [11078] [W2FM] [2024-08-14 01:56:49 +0530] [INFO] Waiting for application startup. [W2FM] [2024-08-14 01:56:49 +0530] [INFO] Application startup complete.
4 workers
processes of the service available onall interfaces
and onport 8080
, while logging according to the configuration available in the newly createdlogging.yaml
file. - To stop the service application processes, invoke a keyboard interrupt by pressing
Ctrl
+C
.Example outputCtrl + C
^C [W2FM] [2024-08-14 01:58:43 +0530] [INFO] Shutting down [W2FM] [2024-08-14 01:58:43 +0530] [INFO] Shutting down [W2FM] [2024-08-14 01:58:43 +0530] [INFO] Shutting down [W2FM] [2024-08-14 01:58:43 +0530] [INFO] Shutting down [W2FM] [2024-08-14 01:58:43 +0530] [INFO] Waiting for application shutdown. [W2FM] [2024-08-14 01:58:43 +0530] [INFO] Waiting for application shutdown. [W2FM] [2024-08-14 01:58:43 +0530] [INFO] Waiting for application shutdown. [W2FM] [2024-08-14 01:58:43 +0530] [INFO] Application shutdown complete. [W2FM] [2024-08-14 01:58:43 +0530] [INFO] Application shutdown complete. [W2FM] [2024-08-14 01:58:43 +0530] [INFO] Application shutdown complete. [W2FM] [2024-08-14 01:58:43 +0530] [INFO] Finished server process [11079] [W2FM] [2024-08-14 01:58:43 +0530] [INFO] Finished server process [11078] [W2FM] [2024-08-14 01:58:43 +0530] [INFO] Finished server process [11081] [W2FM] [2024-08-14 01:58:43 +0530] [INFO] Waiting for application shutdown. [W2FM] [2024-08-14 01:58:43 +0530] [INFO] Application shutdown complete. [W2FM] [2024-08-14 01:58:43 +0530] [INFO] Finished server process [11080] [W2FM] [2024-08-14 01:58:43 +0530] [INFO] Received SIGINT, exiting. [W2FM] [2024-08-14 01:58:43 +0530] [INFO] Terminated child process [11078] [W2FM] [2024-08-14 01:58:43 +0530] [INFO] Terminated child process [11079] [W2FM] [2024-08-14 01:58:43 +0530] [INFO] Terminated child process [11080] [W2FM] [2024-08-14 01:58:43 +0530] [INFO] Terminated child process [11081] [W2FM] [2024-08-14 01:58:43 +0530] [INFO] Waiting for child process [11078] [W2FM] [2024-08-14 01:58:43 +0530] [INFO] Waiting for child process [11079] [W2FM] [2024-08-14 01:58:43 +0530] [INFO] Waiting for child process [11080] [W2FM] [2024-08-14 01:58:43 +0530] [INFO] Waiting for child process [11081] [W2FM] [2024-08-14 01:58:43 +0530] [INFO] Stopping parent process [11076]
- For more utility options on running the service, start
uvicorn
with the--help
flag.Example output(venv) $ uvicorn --help
Usage: uvicorn [OPTIONS] APP Options: --host TEXT Bind socket to this host. [default: 127.0.0.1] --port INTEGER Bind socket to this port. If 0, an available port will be picked. [default: 8000] --uds TEXT Bind to a UNIX domain socket. --fd INTEGER Bind to socket from this file descriptor. ...
- Deactivate the virtual environment by running the following command.
(venv) $ deactivate
This is where you describe Webhook to Fedora Messaging.
The full documentation is on ReadTheDocs.
You can install it from PyPI.