-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #25 from miguelfc/documentation
Documentation changes
- Loading branch information
Showing
43 changed files
with
487 additions
and
61 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,10 @@ | ||
access: | ||
admin: | ||
username: '' | ||
password: '' | ||
username: 'youshouldchangethis' | ||
password: 'yesyoudo' | ||
oper: | ||
username: '' | ||
password: '' | ||
username: 'pleasechangethis' | ||
password: 'prettyplease' | ||
guest: | ||
username: '' | ||
password: '' | ||
username: 'youmustchangethisnow' | ||
password: 'changeitnowplease' |
Binary file not shown.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,5 @@ | ||
FROM java:8 | ||
VOLUME /tmp | ||
ADD marble-core-1.0.0-SNAPSHOT.jar app.jar | ||
ADD app.jar app.jar | ||
RUN bash -c 'touch /app.jar' | ||
EXPOSE 1111 | ||
CMD cd config & java -jar ../app.jar |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
Main module for Marble, an opinion mining platform, modular and open sourced. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,39 @@ | ||
# Supported tags and respective `Dockerfile` links | ||
|
||
- [`1.0.0-RELEASE`, `latest` (*Dockerfile*)](https://github.com/miguelfc/marble/blob/76d5017b1438a4c2c00fd401b9f1a8f8bcdb73db/marble-core/src/main/docker/Dockerfile) | ||
|
||
# What is Marble? | ||
|
||
[Marble](http://marble.miguelfc.com/) is an opinion mining platform, modular and open sourced. This is part of a PhD project, being developed by [Miguel Fernandes](http://miguelfernandes.com/) for the University of Vigo, under the supervision of Ana Fernández Vilas and Rebeca Díaz Redondo. | ||
|
||
Marble is composed of several modules. This one, marble-core, represents the main module, providing the backend and frontend capabilities to the system. | ||
|
||
All the modules of the platform them described in the [Github project](https://github.com/miguelfc/marble). | ||
|
||
# How to use this image | ||
|
||
As there are some dependencies between modules (namely mongodb, registry and core), it is recommended to use docker-compose to launch the required services in a coordinated way. There is a [docker-compose.yml](https://github.com/miguelfc/marble/blob/master/docker/docker-compose.yml) file provided as a baseline for you to use. | ||
|
||
The required services are mongodb, registry and core, so you can launch them using the up subcommand: | ||
|
||
```console | ||
$ docker-compose up mongodb registry core | ||
``` | ||
|
||
If you want to launch all the provided modules, then you can just use the up subcommand without arguments: | ||
|
||
```console | ||
$ docker-compose up | ||
``` | ||
|
||
Then, access it via `http://localhost:8080` or `http://host-ip:8080` in a browser. You can also access the registry via `http://localhost:11111` or `http://host-ip:1111` in a browser. | ||
|
||
For more specific details please check the [Github project](https://github.com/miguelfc/marble). | ||
|
||
# Issues | ||
|
||
If you have any problems with or questions about this image, please contact us through a [Github issue](https://github.com/miguelfc/marble/issues/new) in the Github project. | ||
|
||
# Contributing | ||
|
||
You are invited to contribute new features, fixes, or updates, large or small. Before you start to code, we recommend discussing your plans through a [Github issue](https://github.com/miguelfc/marble/issues/new), especially for more ambitious contributions. This gives other contributors a chance to point you in the right direction, give you feedback on your design, and help you find out if someone else is working on the same thing. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,5 @@ | ||
FROM java:8 | ||
VOLUME /tmp | ||
ADD marble-plotter-simple-1.0.0-SNAPSHOT.jar app.jar | ||
ADD app.jar app.jar | ||
RUN bash -c 'touch /app.jar' | ||
EXPOSE 1111 | ||
ENTRYPOINT ["java","-jar","/app.jar"] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
Plotter module for Marble, an opinion mining platform, modular and open sourced. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,39 @@ | ||
# Supported tags and respective `Dockerfile` links | ||
|
||
- [`1.0.0-RELEASE`, `latest` (*Dockerfile*)](https://github.com/miguelfc/marble/blob/76d5017b1438a4c2c00fd401b9f1a8f8bcdb73db/marble-core/src/main/docker/Dockerfile) | ||
|
||
# What is Marble? | ||
|
||
[Marble](http://marble.miguelfc.com/) is an opinion mining platform, modular and open sourced. This is part of a PhD project, being developed by [Miguel Fernandes](http://miguelfernandes.com/) for the University of Vigo, under the supervision of Ana Fernández Vilas and Rebeca Díaz Redondo. | ||
|
||
Marble is composed of several modules. This one, marble-plotter-simple, is a plotter module, providing charts and report to the system. | ||
|
||
All the modules of the platform them described in the [Github project](https://github.com/miguelfc/marble). | ||
|
||
# How to use this image | ||
|
||
As there are some dependencies between modules (namely mongodb, registry and core), it is recommended to use docker-compose to launch the required services in a coordinated way. There is a [docker-compose.yml](https://github.com/miguelfc/marble/blob/master/docker/docker-compose.yml) file provided as a baseline for you to use. | ||
|
||
The required services are mongodb, registry and core, so you can launch them using the up subcommand: | ||
|
||
```console | ||
$ docker-compose up mongodb registry core | ||
``` | ||
|
||
If you want to launch all the provided modules, then you can just use the up subcommand without arguments: | ||
|
||
```console | ||
$ docker-compose up | ||
``` | ||
|
||
Then, access it via `http://localhost:8080` or `http://host-ip:8080` in a browser. You can also access the registry via `http://localhost:11111` or `http://host-ip:1111` in a browser. | ||
|
||
For more specific details please check the [Github project](https://github.com/miguelfc/marble). | ||
|
||
# Issues | ||
|
||
If you have any problems with or questions about this image, please contact us through a [Github issue](https://github.com/miguelfc/marble/issues/new) in the Github project. | ||
|
||
# Contributing | ||
|
||
You are invited to contribute new features, fixes, or updates, large or small. Before you start to code, we recommend discussing your plans through a [Github issue](https://github.com/miguelfc/marble/issues/new), especially for more ambitious contributions. This gives other contributors a chance to point you in the right direction, give you feedback on your design, and help you find out if someone else is working on the same thing. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,5 @@ | ||
FROM java:8 | ||
VOLUME /tmp | ||
ADD marble-preprocessor-simple-1.0.0-SNAPSHOT.jar app.jar | ||
ADD app.jar app.jar | ||
RUN bash -c 'touch /app.jar' | ||
EXPOSE 1111 | ||
ENTRYPOINT ["java","-jar","/app.jar"] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
Preprocessor module for Marble, an opinion mining platform, modular and open sourced. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,39 @@ | ||
# Supported tags and respective `Dockerfile` links | ||
|
||
- [`1.0.0-RELEASE`, `latest` (*Dockerfile*)](https://github.com/miguelfc/marble/blob/76d5017b1438a4c2c00fd401b9f1a8f8bcdb73db/marble-core/src/main/docker/Dockerfile) | ||
|
||
# What is Marble? | ||
|
||
[Marble](http://marble.miguelfc.com/) is an opinion mining platform, modular and open sourced. This is part of a PhD project, being developed by [Miguel Fernandes](http://miguelfernandes.com/) for the University of Vigo, under the supervision of Ana Fernández Vilas and Rebeca Díaz Redondo. | ||
|
||
Marble is composed of several modules. This one, marble-preprocessor-simple, is a preprocessor module, providing cleaning methods to be used along processor modules. | ||
|
||
All the modules of the platform them described in the [Github project](https://github.com/miguelfc/marble). | ||
|
||
# How to use this image | ||
|
||
As there are some dependencies between modules (namely mongodb, registry and core), it is recommended to use docker-compose to launch the required services in a coordinated way. There is a [docker-compose.yml](https://github.com/miguelfc/marble/blob/master/docker/docker-compose.yml) file provided as a baseline for you to use. | ||
|
||
The required services are mongodb, registry and core, so you can launch them using the up subcommand: | ||
|
||
```console | ||
$ docker-compose up mongodb registry core | ||
``` | ||
|
||
If you want to launch all the provided modules, then you can just use the up subcommand without arguments: | ||
|
||
```console | ||
$ docker-compose up | ||
``` | ||
|
||
Then, access it via `http://localhost:8080` or `http://host-ip:8080` in a browser. You can also access the registry via `http://localhost:11111` or `http://host-ip:1111` in a browser. | ||
|
||
For more specific details please check the [Github project](https://github.com/miguelfc/marble). | ||
|
||
# Issues | ||
|
||
If you have any problems with or questions about this image, please contact us through a [Github issue](https://github.com/miguelfc/marble/issues/new) in the Github project. | ||
|
||
# Contributing | ||
|
||
You are invited to contribute new features, fixes, or updates, large or small. Before you start to code, we recommend discussing your plans through a [Github issue](https://github.com/miguelfc/marble/issues/new), especially for more ambitious contributions. This gives other contributors a chance to point you in the right direction, give you feedback on your design, and help you find out if someone else is working on the same thing. |
Oops, something went wrong.