Skip to content

Commit 247fa94

Browse files
authored
Merge pull request #3 from ltsch/app-profiles
App profiles
2 parents 7a6a76e + b83be0f commit 247fa94

Some content is hidden

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

50 files changed

+90915
-128
lines changed

.dockerignore

Lines changed: 96 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,96 @@
1+
# Node.js
2+
node_modules/
3+
npm-debug.log*
4+
yarn-debug.log*
5+
yarn-error.log*
6+
.npm
7+
.yarn-integrity
8+
9+
# Python
10+
__pycache__/
11+
*.py[cod]
12+
*$py.class
13+
*.so
14+
.Python
15+
build/
16+
develop-eggs/
17+
dist/
18+
downloads/
19+
eggs/
20+
.eggs/
21+
lib/
22+
lib64/
23+
parts/
24+
sdist/
25+
var/
26+
wheels/
27+
share/python-wheels/
28+
*.egg-info/
29+
.installed.cfg
30+
*.egg
31+
MANIFEST
32+
33+
# Virtual environments
34+
.env
35+
.venv
36+
env/
37+
venv/
38+
ENV/
39+
env.bak/
40+
venv.bak/
41+
42+
# IDE/Editor files
43+
.idea/
44+
.vscode/
45+
.cursor/
46+
*.swp
47+
*.swo
48+
*~
49+
50+
# OS generated files
51+
.DS_Store
52+
.DS_Store?
53+
._*
54+
.Spotlight-V100
55+
.Trashes
56+
ehthumbs.db
57+
Thumbs.db
58+
59+
# Git
60+
.git/
61+
.gitignore
62+
63+
# Documentation
64+
*.md
65+
README.md
66+
67+
# Testing and development
68+
test-results/
69+
*.log
70+
test-report.txt
71+
playwright-report/
72+
playwright/.cache/
73+
.pytest_cache/
74+
htmlcov/
75+
.coverage
76+
.coverage.*
77+
coverage.xml
78+
*.cover
79+
.hypothesis/
80+
81+
# Temporary files
82+
*.tmp
83+
*.temp
84+
85+
# Database files
86+
*.db
87+
*.sqlite
88+
*.sqlite3
89+
90+
# Package files
91+
package-lock.json
92+
yarn.lock
93+
94+
# Environment files
95+
.env*
96+
!.env.example

.gitignore

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -144,4 +144,12 @@ htmlcov/
144144
.coverage.*
145145
coverage.xml
146146
*.cover
147-
.hypothesis/
147+
.hypothesis/
148+
149+
# SCIM Client specific
150+
test-results/
151+
*.log
152+
test-report.txt
153+
playwright-report/
154+
test-results/
155+
playwright/.cache/

0 commit comments

Comments
 (0)