Skip to content

Commit 9e9336b

Browse files
authored
Merge pull request #32 from snowplow-incubator/feat/add-express-example
feat: Add express example
2 parents 2b7447a + 615ac0c commit 9e9336b

8 files changed

Lines changed: 2846 additions & 7 deletions

File tree

.vscode/settings.json

Lines changed: 0 additions & 7 deletions
This file was deleted.

express/.env

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
# In a real world app, this would be gitignored :)
2+
PORT=3000

express/.gitignore

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
# See https://help.github.com/articles/ignoring-files/ for more about ignoring files.
2+
3+
# dependencies
4+
/node_modules
5+
/.pnp
6+
.pnp.js
7+
8+
# testing
9+
/coverage
10+
11+
# production
12+
/dist
13+
14+
# misc
15+
.DS_Store
16+
.env.local
17+
.env.development.local
18+
.env.test.local
19+
.env.production.local
20+
21+
npm-debug.log*
22+
yarn-debug.log*
23+
yarn-error.log*

0 commit comments

Comments
 (0)