https://github.com/qdequippe/friendsofphp-org
Find the nearest PHP meetup on a map with pins
https://github.com/qdequippe/friendsofphp-org
community friendsofphp meetups php php-group
Last synced: about 1 year ago
JSON representation
Find the nearest PHP meetup on a map with pins
- Host: GitHub
- URL: https://github.com/qdequippe/friendsofphp-org
- Owner: qdequippe
- Created: 2018-06-15T08:34:28.000Z (about 8 years ago)
- Default Branch: main
- Last Pushed: 2024-10-30T00:31:41.000Z (over 1 year ago)
- Last Synced: 2024-10-30T02:50:56.689Z (over 1 year ago)
- Topics: community, friendsofphp, meetups, php, php-group
- Language: HTML
- Homepage: https://friendsofphp.org
- Size: 5.46 MB
- Stars: 45
- Watchers: 6
- Forks: 20
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Funding: .github/FUNDING.yml
Awesome Lists containing this project
README
## Install
```sh
git clone git@github.com:TomasVotruba/friendsofphp.org.git # use your fork to contribute
cd friendsofphp.org
composer install
```
- Copy `.env` to `.env.local`
- Add your [Meetup.com API keys](https://secure.meetup.com/meetup_api/oauth_consumers/):
```dotenv
# .env.local
MEETUP_COM_OAUTH_KEY=...
MEETUP_COM_OAUTH_SECRET=...
```
- Update Meetup Data
```bash
bin/console import
```
- Run Local Server
```bash
bin/console server:run
```
You'll find new or updated files in `/config/_data/` directory.
## JSON API?
Do you want to get all groups and meetups? There you are:
- https://friendsofphp.org/api/meetups.json
- https://friendsofphp.org/api/groups.json
Happy coding... with friends!