forked from CZ-NIC/pyoidc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.gitignore
52 lines (44 loc) · 759 Bytes
/
.gitignore
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
42
43
44
45
46
47
48
49
50
51
52
# IntelliJ project folder
.idea
# Other dev-env folders and files
.vagrant
Vagrantfile
# setup.py-related folders and files
build
dist
*.egg-info
*.egg
*.eggs
# Compiled files
*.pyc
# Logs
*.log
*.log.*
# Tox testing
.tox
private/
tmp/
keys/
secret/
pyoidc*
foo.*
# Windows testing stuff
.coverage
.cache/
# Dynamically created doc folders
doc/_build
!tests/data/keys
# Remaining stuff
oidc_example/op1/client_db.db
oidc_example/op1/oc_config.py
oidc_example/op2/client_db.db
oidc_example/op2/config.py
oidc_example/op2/modules
oidc_example/op2/sp.xml
oidc_example/op2/sp_cert/tmp_mycert.pem
oidc_example/op2/sp_cert/tmp_mykey.pem
oidc_example/op2/sp_conf.py
oidc_example/op2/static/jwks.json
oidc_example/rp3/conf.py
oidc_example/rp3/modules/
update