Skip to content

Commit 661b7f7

Browse files
committed
Init forked project
1 parent cdd30fa commit 661b7f7

24 files changed

+1265
-0
lines changed

.gitignore

Lines changed: 124 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,124 @@
1+
2+
# Created by https://www.gitignore.io/api/java,bower,eclipse,angular
3+
4+
### Angular ###
5+
## Angular ##
6+
# compiled output
7+
/dist
8+
/tmp
9+
/app/**/*.js
10+
/app/**/*.js.map
11+
12+
# dependencies
13+
/node_modules
14+
/bower_components
15+
16+
# IDEs and editors
17+
/.idea
18+
19+
# misc
20+
/.sass-cache
21+
/connect.lock
22+
/coverage/*
23+
/libpeerconnection.log
24+
npm-debug.log
25+
testem.log
26+
/typings
27+
28+
# e2e
29+
/e2e/*.js
30+
/e2e/*.map
31+
32+
#System Files
33+
.DS_Store
34+
35+
### Bower ###
36+
bower_components
37+
.bower-cache
38+
.bower-registry
39+
.bower-tmp
40+
41+
### Eclipse ###
42+
43+
.metadata
44+
bin/
45+
tmp/
46+
*.tmp
47+
*.bak
48+
*.swp
49+
*~.nib
50+
local.properties
51+
.settings/
52+
.loadpath
53+
.recommenders
54+
55+
# External tool builders
56+
.externalToolBuilders/
57+
58+
# Locally stored "Eclipse launch configurations"
59+
*.launch
60+
61+
# PyDev specific (Python IDE for Eclipse)
62+
*.pydevproject
63+
64+
# CDT-specific (C/C++ Development Tooling)
65+
.cproject
66+
67+
# Java annotation processor (APT)
68+
.factorypath
69+
70+
# PDT-specific (PHP Development Tools)
71+
.buildpath
72+
73+
# sbteclipse plugin
74+
.target
75+
76+
# Tern plugin
77+
.tern-project
78+
79+
# TeXlipse plugin
80+
.texlipse
81+
82+
# STS (Spring Tool Suite)
83+
.springBeans
84+
85+
# Code Recommenders
86+
.recommenders/
87+
88+
# Scala IDE specific (Scala & Java development for Eclipse)
89+
.cache-main
90+
.scala_dependencies
91+
.worksheet
92+
93+
### Eclipse Patch ###
94+
# Eclipse Core
95+
.project
96+
97+
# JDT-specific (Eclipse Java Development Tools)
98+
.classpath
99+
100+
### Java ###
101+
# Compiled class file
102+
*.class
103+
104+
# Log file
105+
*.log
106+
107+
# BlueJ files
108+
*.ctxt
109+
110+
# Mobile Tools for Java (J2ME)
111+
.mtj.tmp/
112+
113+
# Package Files #
114+
*.jar
115+
*.war
116+
*.ear
117+
*.zip
118+
*.tar.gz
119+
*.rar
120+
121+
# virtual machine crash logs, see http://www.java.com/en/download/help/error_hotspot.xml
122+
hs_err_pid*
123+
124+
# End of https://www.gitignore.io/api/java,bower,eclipse,angular

demo/.bowerrc

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
{
2+
"directory": "src/main/resources/static/bower_components"
3+
}

demo/.gitignore

Lines changed: 124 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,124 @@
1+
2+
# Created by https://www.gitignore.io/api/java,bower,eclipse,angular
3+
4+
### Angular ###
5+
## Angular ##
6+
# compiled output
7+
/dist
8+
/tmp
9+
/app/**/*.js
10+
/app/**/*.js.map
11+
12+
# dependencies
13+
/node_modules
14+
/bower_components
15+
16+
# IDEs and editors
17+
/.idea
18+
19+
# misc
20+
/.sass-cache
21+
/connect.lock
22+
/coverage/*
23+
/libpeerconnection.log
24+
npm-debug.log
25+
testem.log
26+
/typings
27+
28+
# e2e
29+
/e2e/*.js
30+
/e2e/*.map
31+
32+
#System Files
33+
.DS_Store
34+
35+
### Bower ###
36+
bower_components
37+
.bower-cache
38+
.bower-registry
39+
.bower-tmp
40+
41+
### Eclipse ###
42+
43+
.metadata
44+
bin/
45+
tmp/
46+
*.tmp
47+
*.bak
48+
*.swp
49+
*~.nib
50+
local.properties
51+
.settings/
52+
.loadpath
53+
.recommenders
54+
55+
# External tool builders
56+
.externalToolBuilders/
57+
58+
# Locally stored "Eclipse launch configurations"
59+
*.launch
60+
61+
# PyDev specific (Python IDE for Eclipse)
62+
*.pydevproject
63+
64+
# CDT-specific (C/C++ Development Tooling)
65+
.cproject
66+
67+
# Java annotation processor (APT)
68+
.factorypath
69+
70+
# PDT-specific (PHP Development Tools)
71+
.buildpath
72+
73+
# sbteclipse plugin
74+
.target
75+
76+
# Tern plugin
77+
.tern-project
78+
79+
# TeXlipse plugin
80+
.texlipse
81+
82+
# STS (Spring Tool Suite)
83+
.springBeans
84+
85+
# Code Recommenders
86+
.recommenders/
87+
88+
# Scala IDE specific (Scala & Java development for Eclipse)
89+
.cache-main
90+
.scala_dependencies
91+
.worksheet
92+
93+
### Eclipse Patch ###
94+
# Eclipse Core
95+
.project
96+
97+
# JDT-specific (Eclipse Java Development Tools)
98+
.classpath
99+
100+
### Java ###
101+
# Compiled class file
102+
*.class
103+
104+
# Log file
105+
*.log
106+
107+
# BlueJ files
108+
*.ctxt
109+
110+
# Mobile Tools for Java (J2ME)
111+
.mtj.tmp/
112+
113+
# Package Files #
114+
*.jar
115+
*.war
116+
*.ear
117+
*.zip
118+
*.tar.gz
119+
*.rar
120+
121+
# virtual machine crash logs, see http://www.java.com/en/download/help/error_hotspot.xml
122+
hs_err_pid*
123+
124+
# End of https://www.gitignore.io/api/java,bower,eclipse,angular

demo/bower.json

Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
{
2+
"name": "demo",
3+
"authors": [
4+
"Saif Jerbi <[email protected]>"
5+
],
6+
"directory": "src/main/resources/static",
7+
"appPath": "src/main/resources/static",
8+
"description": "this is a demo application using angular schema form and asf java ui library",
9+
"main": "index.html",
10+
"keywords": [
11+
"angular",
12+
"schema",
13+
"form",
14+
"asf",
15+
"java",
16+
"ui",
17+
"java",
18+
"angular"
19+
],
20+
"license": "MIT",
21+
"homepage": "",
22+
"ignore": [
23+
"**/.*",
24+
"node_modules",
25+
"bower_components",
26+
"test",
27+
"tests"
28+
],
29+
"dependencies": {
30+
"angular-schema-form": "^0.8.13",
31+
"angular-schema-form-bootstrap": "^0.2.0",
32+
"angular": "^1.6.4",
33+
"bootstrap": "^3.3.7"
34+
}
35+
}

0 commit comments

Comments
 (0)