-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy path.gitignore
More file actions
41 lines (34 loc) · 815 Bytes
/
.gitignore
File metadata and controls
41 lines (34 loc) · 815 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
# ==================================
# Global / OS / Editor Ignores
# ==================================
.DS_Store
.vscode/
.idea/
*.log
npm-debug.log*
yarn-debug.log*
yarn-error.log*
pnpm-debug.log*
lerna-debug.log*
# ==================================
# API - (components/api)
# ==================================
# Dependencies
components/api/node_modules/
# Build output
components/api/dist/
# Environment variables
components/api/.env
# Prisma generated client
components/api/.prisma/client/
# Temporary demo migration
components/api/prisma/migrations/*
# ==================================
# Frontend - (components/frontend)
# ==================================
# Dependencies
components/frontend/node_modules/
# Build output
components/frontend/dist/
# Environment variables
components/frontend/.env