wuvatec / hellodrip

Send schedule messages to to a group of contacts

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

About Hello Drip

Message automation application - Send scheduled messages to a group of users via different messaging platforms.

Run Hello Drip from source

After you clone this preoject, do the following:

# go into the project
cd hellodrip

# create a .env file
cp .env.example .env

# install composer dependencies
composer install

# install npm dependencies
npm install

# generate a key for your application
php artisan key:generate

# Input MySQL database information in .env file

# run migration files to generate the schema file
php artisan migrate

#start server with 
php artisan serve

Note If you are using a Mac with MAMP PRO for mysql server, you are more likely to run into a connection refused error. to fix this error:

  • Add DB_SOCKET=/Applications/MAMP/tmp/mysql/mysql.sock to your .env file.
  • Open hellodrip/config/database.php and add 'unix_socket' => env('DB_SOCKET', '') to the mysql connections array options
  • restart laravel server

Change Log

Version 0.7.0 (20 Sep 2021)

  • API authorization implemented with Laravel Sanctum
  • Implement user management

Version 0.0.0 (20 Sep 2021)

  • Database migrations test
  • Implement subdomain routes for api endpoints
  • telescope implemented for debugging

About

Send schedule messages to to a group of contacts


Languages

Language:PHP 84.3%Language:Blade 15.0%Language:Shell 0.7%