https://github.com/devrchancay/apollo-tutorial
https://github.com/devrchancay/apollo-tutorial
Last synced: 12 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/devrchancay/apollo-tutorial
- Owner: devrchancay
- Created: 2019-04-07T07:44:17.000Z (about 7 years ago)
- Default Branch: master
- Last Pushed: 2019-04-07T07:45:13.000Z (about 7 years ago)
- Last Synced: 2025-02-15T13:25:45.943Z (over 1 year ago)
- Language: JavaScript
- Size: 4.05 MB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Apollo tutorial
This is the fullstack app for the [Apollo tutorial](http://apollographql.com/docs/tutorial/introduction.html). 🚀
## File structure
The app is split out into two folders:
- `start`: Starting point for the tutorial
- `final`: Final version
From within the `start` and `final` directories, there are two folders (one for `server` and one for `client`).
## Installation
To run the app, run these commands in two separate terminal windows from the root:
```bash
cd final/server && npm i && npm start
```
and
```bash
cd final/client && npm i && npm start
```