https://github.com/cvilleger/slack-bot
Yet Another Slack Bot
https://github.com/cvilleger/slack-bot
Last synced: 2 months ago
JSON representation
Yet Another Slack Bot
- Host: GitHub
- URL: https://github.com/cvilleger/slack-bot
- Owner: cvilleger
- Created: 2020-04-19T03:24:31.000Z (about 5 years ago)
- Default Branch: master
- Last Pushed: 2023-05-17T03:01:24.000Z (about 2 years ago)
- Last Synced: 2025-02-02T00:41:15.382Z (4 months ago)
- Language: PHP
- Homepage:
- Size: 216 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 5
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
[](https://github.com/cvilleger/slack-bot/actions)
[](https://codecov.io/gh/cvilleger/slack-bot)## Getting Started
These instructions will get you a copy of the project up and running on your local machine for development and testing purposes.
### Prerequisites
What things you need to install the software and how to install them?
- [Docker CE](https://www.docker.com/community-edition)
- [Docker Compose](https://docs.docker.com/compose/install)### Install
#### Override default ports- Create your `docker-compose.override.yaml` file
```bash
cp docker-compose.override.yaml.dist docker-compose.override.yaml
```#### Create custom envs
- Create your `.env.local` file
```bash
cp .env .env.local
```#### Build & up containers, then install dependencies
```bash
docker-compose up -d
docker-compose exec --user=application web composer install
```#### Inside web container, install dependencies
```bash
composer install
```#### Tests
```bash
./vendor/bin/simple-phpunit --coverage-clover coverage.xml
```