https://github.com/andreasonny83/serverless-apollo-graphql
Boilerplate Serverless GraphQL server project
https://github.com/andreasonny83/serverless-apollo-graphql
apollo graphql serverless
Last synced: 3 months ago
JSON representation
Boilerplate Serverless GraphQL server project
- Host: GitHub
- URL: https://github.com/andreasonny83/serverless-apollo-graphql
- Owner: andreasonny83
- Created: 2019-06-08T13:04:35.000Z (almost 7 years ago)
- Default Branch: master
- Last Pushed: 2023-01-03T23:44:38.000Z (over 3 years ago)
- Last Synced: 2025-02-08T19:38:37.841Z (about 1 year ago)
- Topics: apollo, graphql, serverless
- Language: JavaScript
- Homepage:
- Size: 2.28 MB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 26
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Serverless Apollo GraphQL
**:rocket: Wanna test it with a local DynamoDB?**
Check out the [dynamoDB branch](https://github.com/andreasonny83/serverless-apollo-graphql/tree/dynamoDB) :rocket:
## Prerequisites
This project requires NodeJS, NPM, Doker and DockerCompose.
Node and NPM are really easy to install. To make sure you have them available on your machine, try running the following command.
```sh
$ node -v && npm -v
v10.15.1
6.9.0
```
For Docker, please follow the [official documentation](https://www.docker.com/)
## Installation
Just clone this repo on your machine
```sh
git clone git@github.com:andreasonny83/serverless-apollo-graphql.git
```
And install all the node dependencies with `npm`
```sh
$ make build
```
## Usage
### Start the server
```sh
$ make start
```
### Stop the server
```sh
$ make stop
```
That's it!