Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/alefesouza/talk-laravel-vue-graphql
Code of my Implementing GraphQL with Laravel talk
https://github.com/alefesouza/talk-laravel-vue-graphql
graphql laravel vue
Last synced: 7 days ago
JSON representation
Code of my Implementing GraphQL with Laravel talk
- Host: GitHub
- URL: https://github.com/alefesouza/talk-laravel-vue-graphql
- Owner: alefesouza
- Created: 2019-08-27T21:29:57.000Z (about 5 years ago)
- Default Branch: master
- Last Pushed: 2021-01-05T13:40:12.000Z (almost 4 years ago)
- Last Synced: 2024-05-27T19:49:13.426Z (6 months ago)
- Topics: graphql, laravel, vue
- Language: PHP
- Size: 1.76 MB
- Stars: 2
- Watchers: 2
- Forks: 1
- Open Issues: 8
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# talk-laravel-vue-graphql
This repository contains a very simple example of a GraphQL implementation with PHP, presented for the first time on [Laravel SP #17](https://www.meetup.com/Laravel-SP/events/264168245/).
## Steps to run it:
First install the Composer and NPM depencies:
composer install
npm installThen copy the .env.example file to .env:
cp .env.example .env
Migrate and seed the database/example.sqlite file:
php artisan migrate --seed
Then generate the Laravel key and start the built in server:
php artisan key:generate
php artisan serveThe server will start on:
http://127.0.0.1:8000
And the GraphiQL will be available on:
http://127.0.0.1:8000/graphiql