https://github.com/mrblueblue/bird
craigslist apartment scraper and slackbot written in elixir
https://github.com/mrblueblue/bird
craigslist elixir scraper scraping
Last synced: 12 months ago
JSON representation
craigslist apartment scraper and slackbot written in elixir
- Host: GitHub
- URL: https://github.com/mrblueblue/bird
- Owner: mrblueblue
- Created: 2017-03-22T06:30:15.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2017-04-08T19:18:15.000Z (about 9 years ago)
- Last Synced: 2025-03-30T21:41:22.632Z (about 1 year ago)
- Topics: craigslist, elixir, scraper, scraping
- Language: Elixir
- Homepage:
- Size: 24.4 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Bird
Craiglist apartment scraper and slackbot written in Elixir
## Running
Before running, create a `.env` file with your Slack API Token:
```
export SLACK_TOKEN=""
```
Then run:
```bash
source .env
```
### Development
```bash
mix deps.get
iex -S mix
```
### Production
```bash
mix deps.get
mix release --verbose --env=prod
rel/bird/bin/bird migrate
rel/bird/bin/bird start
```
### Docker
```bash
docker-compose up -d --build
docker-compose run scraper ./bin/bird migrate
docker-compose run scraper ./bin/bird foreground
```