Skip to content

Commit cd627ba

Browse files
authored
Merge pull request #28 from IQSS/manifest_changes
MVP release version
2 parents aee3e7f + 99df566 commit cd627ba

111 files changed

Lines changed: 5406 additions & 4270 deletions

File tree

Some content is hidden

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

.gitignore

Lines changed: 148 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,142 @@
1-
HELP.md
2-
target/
3-
!.mvn/wrapper/maven-wrapper.jar
4-
!**/src/main/**/target/
5-
!**/src/test/**/target/
6-
src/main/resources/static/**
1+
# IntelliJ
2+
/.idea
3+
4+
# Visual Studio
5+
/.vscode
6+
7+
# See https://help.github.com/articles/ignoring-files/ for more about ignoring files.
8+
9+
# dependencies
10+
/node_modules
11+
/.pnp
12+
.pnp.js
13+
14+
# testing
15+
/.nyc_output
16+
/coverage
17+
/cypress
18+
.nyc_output
19+
/packages/design-system/coverage
20+
21+
22+
# production
23+
/dist
24+
25+
# storybook
26+
/storybook-static
27+
28+
# misc
29+
.DS_Store
30+
.env
31+
.env.local
32+
.env.development.local
33+
.env.test.local
34+
.env.production.local
35+
.npmrc
36+
37+
npm-debug.log*
38+
yarn-debug.log*
39+
yarn-error.log*
40+
41+
#deployment
42+
/deployment/payara/target
43+
44+
#dev environment
45+
/dev-env/docker-dev-volumes
46+
/dev-env/dataverse
47+
/dev-env/dataverse-sample-data
48+
/packages/design-system/.nyc_output
49+
50+
51+
# Compiled source #
52+
###################
53+
*.com
54+
*.class
55+
*.dll
56+
*.exe
57+
*.o
58+
*.so
59+
_site/
760

8-
### STS ###
61+
# Packages #
62+
############
63+
# it's better to unpack these files and commit the raw source
64+
# git has its own built in compression methods
65+
*.7z
66+
*.dmg
67+
*.gz
68+
*.iso
69+
*.jar
70+
# Do not ignore the Keycloak SPI jar file
71+
# which is necessary for the local development environment
72+
!keycloak-dv-builtin-users-authenticator-1.0-SNAPSHOT.jar
73+
*.rar
74+
*.tar
75+
*.zip
76+
77+
# Logs and databases #
78+
######################
79+
*.log
80+
*.sql
81+
*.sqlite
82+
83+
# OS generated files #
84+
######################
85+
.DS_Store
86+
.DS_Store?
87+
.Spotlight-V100
88+
.Trashes
89+
Icon?
90+
ehthumbs.db
91+
Thumbs.db
92+
93+
# Vim swap files #
94+
##################
95+
*.swp
96+
97+
# Python #
98+
#################
99+
*.pyc
100+
*.egg-info/
101+
__pycache__/
102+
*.py[cod]
103+
.env
104+
.python-version
105+
106+
# pyenv #
107+
#########
108+
.python-version
109+
110+
# Django #
111+
#################
112+
*.egg-info
113+
.installed.cfg
114+
115+
# Unit test / coverage reports
116+
#################
117+
htmlcov/
118+
.tox/
119+
.coverage
120+
.cache
121+
nosetests.xml
122+
coverage.xml
123+
124+
# Front-End #
125+
#############
126+
node_modules/
127+
bower_components/
128+
.grunt/
129+
src/vendor/
130+
dist/
131+
132+
# Keycloakify
133+
#################
134+
keycloakify-dev-resources
135+
dist_keycloak
136+
137+
# Original Ignore #
138+
139+
# STS #
9140
.apt_generated
10141
.classpath
11142
.factorypath
@@ -14,13 +145,13 @@ src/main/resources/static/**
14145
.springBeans
15146
.sts4-cache
16147

17-
### IntelliJ IDEA ###
148+
# IntelliJ IDEA #
18149
.idea
19150
*.iws
20151
*.iml
21152
*.ipr
22153

23-
### NetBeans ###
154+
# NetBeans #
24155
/nbproject/private/
25156
/nbbuild/
26157
/dist/
@@ -30,10 +161,14 @@ build/
30161
!**/src/main/**/build/
31162
!**/src/test/**/build/
32163

33-
### VS Code ###
164+
# VS Code #
34165
.vscode/
35-
36-
37166
/storage/*
38167
docker-dev-volumes
39-
dv-marketplace/node_modules/
168+
dv-marketplace/node_modules/
169+
HELP.md
170+
target/
171+
!.mvn/wrapper/maven-wrapper.jar
172+
!**/src/main/**/target/
173+
!**/src/test/**/target/
174+
src/main/resources/static/**

0 commit comments

Comments
 (0)