https://github.com/victormln/grapqhl-full-stack-example
https://github.com/victormln/grapqhl-full-stack-example
Last synced: 10 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/victormln/grapqhl-full-stack-example
- Owner: victormln
- License: mit
- Created: 2021-03-14T17:55:26.000Z (almost 5 years ago)
- Default Branch: master
- Last Pushed: 2021-03-14T18:27:52.000Z (almost 5 years ago)
- Last Synced: 2025-01-13T03:31:42.597Z (12 months ago)
- Language: TypeScript
- Size: 5.69 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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
```