marmottawrapper 0.0.3 → 0.0.4
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/README.md +23 -4
- data/lib/marmottawrapper/version.rb +1 -1
- data/marmottawrapper.gemspec +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 0ab551c3416a281241e942fbfbf3d2bfb1d7689e
|
4
|
+
data.tar.gz: debc2199615e70f3a0ef97bb687231f52cae6127
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 18253cd1ed816e0b33c01f8918b32b24b8f09eba56291cd07f71e1dee24deac67e847a8bbcce2a7ae8022b00ff8c8e00f19e59550f48e10b2c85b15e18117cfe
|
7
|
+
data.tar.gz: 971177a4d6076c638413019bd0732e7cf8b014c5029fc4efc421d5f7327775ffba3a57e324535f208f72f23315b51b495330e0927971382373a5b3d0b9aa5970
|
data/README.md
CHANGED
@@ -3,11 +3,30 @@ marmotta-webapp
|
|
3
3
|
|
4
4
|
This project creates rake tasks to easily start up [Apache Marmotta](http://marmotta.apache.org/) in Tomcat 7.
|
5
5
|
|
6
|
-
|
6
|
+
To install:
|
7
|
+
|
8
|
+
git clone https://github.com/dpla/marmotta-webapp
|
9
|
+
cd marmotta-webapp
|
10
|
+
bundle install
|
11
|
+
|
12
|
+
* To start a Marmotta app in Tomcat 7 on port `8080`: `rake marmotta:start`
|
13
|
+
|
14
|
+
Virtual Machine
|
15
|
+
---------------
|
16
|
+
This project comes with a vagrant file that will configure a working environment
|
17
|
+
for Marmotta. To use it:
|
18
|
+
|
19
|
+
vagrant up
|
20
|
+
vagrant ssh
|
21
|
+
rake marmotta:start
|
22
|
+
|
23
|
+
Marmotta should now be available on your host machine at port `8087`.
|
7
24
|
|
8
25
|
TODO:
|
9
|
-
|
10
|
-
* [ ]
|
11
|
-
* [ ]
|
26
|
+
-----
|
27
|
+
* [ ] Use a runnable/downloadable JAR file: `mvn clean package -Prunnable-war`, `java -jar target/marmotta-webapp-3.2.1-0.0.1-war-exec.jar`
|
28
|
+
* [ ] Add task to download JAR, to make this easier to use in projects.
|
29
|
+
* [ ] Make Tomcat port configurable.
|
30
|
+
* [ ] Wait for Tomcat to start before quitting `start` task.
|
12
31
|
|
13
32
|
License: Apache 2.0
|
data/marmottawrapper.gemspec
CHANGED
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: marmottawrapper
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.0.
|
4
|
+
version: 0.0.4
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Mark Matienzo
|
@@ -93,7 +93,7 @@ files:
|
|
93
93
|
- pom.xml
|
94
94
|
homepage: https://github.com/dpla/marmotta-webapp
|
95
95
|
licenses:
|
96
|
-
-
|
96
|
+
- APACHE 2
|
97
97
|
metadata: {}
|
98
98
|
post_install_message:
|
99
99
|
rdoc_options: []
|