Skip to content

Instantly share code, notes, and snippets.

View kofiasare-dev's full-sized avatar
🎯
Focusing

kofiasare-dev

🎯
Focusing
View GitHub Profile
@kofiasare-dev
kofiasare-dev / crapi.sh
Last active October 16, 2023 07:52
Create docker compose rails app
#!/bin/bash
set -e
create_dir() {
local target="$1"
if [ -d "$target" ]; then
echo "❌ Directory '$target' already exists. Skipping."
else
@kofiasare-dev
kofiasare-dev / 00.md
Created January 22, 2023 17:31 — forked from maxivak/00.md
Sending emails with ActionMailer and Sidekiq

Sending emails with ActionMailer and Sidekiq

Send email asynchroniously using Sidekiq.

ActionMailer

Create your mailer us usual: