git clone https://github.com/faropedia/simple-chatbot-app
cd simple-chatbot-app
cp .env.example .env
composer install
php artisan key:generate
# create database named 'simple_chat_app'
php artisan migrate --seed
npm install
npm run dev
php artisan serve
- Register first (http://localhost:8000/register)
- After login, go to http://localhost:8000/messages
- Send greeting text (required your name): "Hello, my name is
{your name}
, thank you" - Bot will reply with "Hello
{your name}
, nice to meet you!"
The Laravel framework is open-sourced software licensed under the MIT license.