Skip to content

Spomky/qotd

This branch is 37 commits ahead of, 49 commits behind jolicode/qotd:main.

Folders and files

NameName
Last commit message
Last commit date

Latest commit

3497de7 · Nov 8, 2024
Jan 4, 2024
Nov 8, 2024
Nov 8, 2024
Nov 8, 2024
Mar 29, 2023
Mar 28, 2024
May 30, 2023
Jan 11, 2024
Nov 29, 2022
Mar 28, 2024
Nov 8, 2024
Jan 5, 2024
Mar 14, 2023
Nov 8, 2024
Nov 29, 2022
Jan 4, 2024
Jan 4, 2024
Nov 29, 2022
Nov 29, 2022
Nov 29, 2022
Mar 28, 2024
Nov 15, 2023
Nov 8, 2024
Nov 8, 2024
May 10, 2023
Nov 8, 2024
Nov 29, 2022
May 12, 2023
Jan 4, 2024
Nov 29, 2022
Nov 8, 2024
May 17, 2023

Repository files navigation

QOTD Application

This application contains a slack bot that post a quote of the day to a slack channel.

The bot looks every morning for a new quote of the day and post it to the channel of your choice.

To elect the best QOTD, the bot will search for message with the most reactions. You can customize the searched reaction in the .env file.

This application is a fun project to learn how to use the following technologies:

  • Symfony
  • Symfony UX and some third party UX components
  • Advanced Doctrine and PostgreSQL usages (CTE, Window functions, Native Queries, Full Text Search, Pagination)

Installation

Configure the Slack Application

Create a new slack application with the manifest located in doc/slack-manifest.yaml.

Dont forget to customize the file with your own values.

Configure the Google application

You'll need a pair of Google API keys to connect via oAuth. You'll need to configure the following URLs as a callback: http://localhost:8000/connect/google/check. You'll also need to configure the emails domains allowed.

GOOGLE_CLIENT_ID=FIXME
GOOGLE_CLIENT_SECRET=FIXME
APP_ALLOWED_EMAIL_DOMAINS='["jolicode.com", "premieroctet.com"]'

But if you don't want to connect with google, you can use the YoloAuthenticator, see config/packages/security.yaml file.

Install the PHP application

To make the application available locally at the address http://localhost:8000, first create a docker-compose.override.yml file with the following content:

version: '3.7'

services:
    frontend:
        ports:
            - "8000:80"

Note

Override APP_DEFAULT_URI value in a .env.local file if you use another port or another domain.

Then run the following commands:

docker-compose up -d
docker-compose run --rm --user=app frontend composer install
docker-compose run --rm --user=app frontend bin/console asset-map:compile
docker-compose run --rm --user=app frontend bin/db
# If you want to load some fixtures
# docker-compose run --rm --user=app frontend bin/console doctrine:fixtures:load  --no-interaction
# configure remaining parameters in .env.local
# Enjoy

Development

If you want to contribute, you can edit the docker-compose.override.yml file to add:

services:
    frontend:
        volumes:
            - .:/app
        ports:
          - 8888:80

Usage

In slack you have one commands

  • /qotd [a date] to find the QOTD of the day or of the given date;

Credits

Thanks JoliCode for sponsoring this project.

About

No description, website, or topics provided.

Resources

License

Code of conduct

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • PHP 71.4%
  • Twig 22.4%
  • JavaScript 3.3%
  • Dockerfile 2.3%
  • Shell 0.3%
  • CSS 0.2%
  • Procfile 0.1%