Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/krossroad/tweetfinder
https://github.com/krossroad/tweetfinder
google-maps laravel5 reactjs
Last synced: about 3 hours ago
JSON representation
- Host: GitHub
- URL: https://github.com/krossroad/tweetfinder
- Owner: krossroad
- Created: 2017-10-29T09:29:18.000Z (about 7 years ago)
- Default Branch: master
- Last Pushed: 2017-10-30T01:15:01.000Z (about 7 years ago)
- Last Synced: 2024-11-11T16:46:49.436Z (about 2 months ago)
- Topics: google-maps, laravel5, reactjs
- Language: PHP
- Size: 779 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
## Tweet-Finder
### Setup
Run the docker compose.
```
docker-composer up -d
```Install php & node dependencies, run migrations and run `laravel mix`.
```
docker exec -it tweetfinder_php_1 composer install
docker exec -it tweetfinder_php_1 php artisan migration
docker exec -it tweetfinder_php_1 npm install
docker exec -it tweetfinder_php_1 npm run dev
```
Make sure the you add twitter auth keys in `.env`
```
TWITTER_CONSUMER_KEY=
TWITTER_CONSUMER_SECRET=
TWITTER_ACCESS_TOKEN=
TWITTER_ACCESS_TOKEN_SECRET=
```### Test
To run phpunit tests,
```
docker exec -it tweetfinder_php_1 vendor/bin/phpunit
```
You can see the result in [http://localhost](http://localhost).