Skip to content

Commit d4f04aa

Browse files
authored
Merge pull request #188 from TencentCloudBase/feat/functions
(feat): 增加 httpfunction 模版
2 parents 753c252 + 12111c2 commit d4f04aa

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

75 files changed

+18923
-0
lines changed

httpfunctions/koa/.gitignore

Lines changed: 109 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,109 @@
1+
# Dependencies
2+
node_modules/
3+
npm-debug.log*
4+
yarn-debug.log*
5+
yarn-error.log*
6+
7+
# Runtime data
8+
pids
9+
*.pid
10+
*.seed
11+
*.pid.lock
12+
13+
# Coverage directory used by tools like istanbul
14+
coverage/
15+
16+
# nyc test coverage
17+
.nyc_output
18+
19+
# Grunt intermediate storage
20+
.grunt
21+
22+
# Bower dependency directory
23+
bower_components
24+
25+
# node-waf configuration
26+
.lock-wscript
27+
28+
# Compiled binary addons
29+
build/Release
30+
31+
# Dependency directories
32+
jspm_packages/
33+
34+
# Optional npm cache directory
35+
.npm
36+
37+
# Optional REPL history
38+
.node_repl_history
39+
40+
# Output of 'npm pack'
41+
*.tgz
42+
43+
# Yarn Integrity file
44+
.yarn-integrity
45+
46+
# dotenv environment variables file
47+
.env
48+
.env.test
49+
.env.local
50+
.env.production
51+
52+
# parcel-bundler cache
53+
.cache
54+
.parcel-cache
55+
56+
# next.js build output
57+
.next
58+
59+
# nuxt.js build output
60+
.nuxt
61+
62+
# vuepress build output
63+
.vuepress/dist
64+
65+
# Serverless directories
66+
.serverless
67+
68+
# FuseBox cache
69+
.fusebox/
70+
71+
# DynamoDB Local files
72+
.dynamodb/
73+
74+
# TernJS port file
75+
.tern-port
76+
77+
# Logs
78+
logs
79+
*.log
80+
81+
# Runtime data
82+
pids
83+
*.pid
84+
*.seed
85+
86+
# Coverage directory used by tools like istanbul
87+
coverage
88+
89+
# Grunt intermediate storage (http://gruntjs.com/creating-plugins#storing-task-files)
90+
.grunt
91+
92+
# Compiled binary addons (http://nodejs.org/api/addons.html)
93+
build/Release
94+
95+
# Users Environment Variables
96+
.lock-wscript
97+
98+
# IDE
99+
.vscode/
100+
.idea/
101+
*.swp
102+
*.swo
103+
104+
# OS
105+
.DS_Store
106+
Thumbs.db
107+
108+
# Deployment packages
109+
*.zip

0 commit comments

Comments
 (0)