https://github.com/jaystack/functionly-examples
https://github.com/jaystack/functionly-examples
Last synced: 3 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/jaystack/functionly-examples
- Owner: jaystack
- Created: 2017-05-22T13:53:02.000Z (about 8 years ago)
- Default Branch: master
- Last Pushed: 2018-02-08T14:38:04.000Z (over 7 years ago)
- Last Synced: 2025-01-16T05:55:56.515Z (5 months ago)
- Language: TypeScript
- Size: 186 KB
- Stars: 1
- Watchers: 8
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Functionly examples
## Functionly configuration
The `functionly.json` contains the default configuration of the CLI, just create this file in the project root.### example:
```js
{
"awsRegion": "us-east-1",
"main": "./src/index.js",
"deployTarget": "aws",
"localPort": 3000,
"stage": "dev",
"watch": true,
"compile": "babel-loader"
}
```## Javascript
- [greeter](https://github.com/jaystack/functionly-examples/tree/master/greeter)
- [todoDB](https://github.com/jaystack/functionly-examples/tree/master/todoDB-es6)
- [graphql](https://github.com/jaystack/functionly-examples/tree/master/graphql)## Typescript
- [todoDB](https://github.com/jaystack/functionly-examples/tree/master/todoDB)
- [todoDB-mongo](https://github.com/jaystack/functionly-examples/tree/master/todoDB-mongo)
- [todoDBAdvanced](https://github.com/jaystack/functionly-examples/tree/master/todoDBAdvanced)
- [eventSource](https://github.com/jaystack/functionly-examples/tree/master/eventSource)