blob: f8cb99010bbe6dfbbd3edf499b00c80dba368605 [file] [log] [blame]
Rohan Patele19624e2019-11-11 16:30:46 -05001# Copyright (c) 2019 AT&T Intellectual Property. #
2# #
3# Licensed under the Apache License, Version 2.0 (the "License"); #
4# you may not use this file except in compliance with the License. #
5# You may obtain a copy of the License at #
6# #
7# http://www.apache.org/licenses/LICENSE-2.0 #
8# #
9# Unless required by applicable law or agreed to in writing, software #
10# distributed under the License is distributed on an "AS IS" BASIS, #
11# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. #
12# See the License for the specific language governing permissions and #
13# limitations under the License. #
14################################################################################
Rohan Patel6f7e46b2019-09-25 14:35:28 -040015
16# Created by https://www.gitignore.io/api/node,angular
17
18### Angular ###
19## Angular ##
20# compiled output
21/dist
22/tmp
23/app/**/*.js
24/app/**/*.js.map
25package-lock.json
26
27# dependencies
28/node_modules
29/bower_components
30
31# IDEs and editors
32/.idea
33/.vscode
34
35# misc
36/.sass-cache
37/connect.lock
38/coverage/*
39/libpeerconnection.log
40npm-debug.log
41testem.log
42/typings
43
44# e2e
45/e2e/*.js
46/e2e/*.map
47
48#System Files
49.DS_Store
50
51### Node ###
52# Logs
53logs
54*.log
55npm-debug.log*
56yarn-debug.log*
57yarn-error.log*
58
59# Runtime data
60pids
61*.pid
62*.seed
63*.pid.lock
64
65# Directory for instrumented libs generated by jscoverage/JSCover
66lib-cov
67
68# Coverage directory used by tools like istanbul
69coverage
70
71# nyc test coverage
72.nyc_output
73
74# Grunt intermediate storage (https://gruntjs.com/creating-plugins#storing-task-files)
75.grunt
76
77# Bower dependency directory (https://bower.io/)
78bower_components
79
80# node-waf configuration
81.lock-wscript
82
83# Compiled binary addons (https://nodejs.org/api/addons.html)
84build/Release
85
86# Dependency directories
87node_modules/
88jspm_packages/
89
90# TypeScript v1 declaration files
91typings/
92
93# Optional npm cache directory
94.npm
95
96# Optional eslint cache
97.eslintcache
98
99# Optional REPL history
100.node_repl_history
101
102# Output of 'npm pack'
103*.tgz
104
105# Yarn Integrity file
106.yarn-integrity
107
108# dotenv environment variables file
109.env
110
111# parcel-bundler cache (https://parceljs.org/)
112.cache
113
114# next.js build output
115.next
116
117# nuxt.js build output
118.nuxt
119
120# vuepress build output
121.vuepress/dist
122
123# Serverless directories
124.serverless
125
126
127# End of https://www.gitignore.io/api/node,angular
Rohan Patel6f7e46b2019-09-25 14:35:28 -0400128
129# certs
130server/config/cert/*.pem
131server/config/cert/otf.pem
132server/config/cert/privateKey.pem
133# env script
134envScript.sh