-
Notifications
You must be signed in to change notification settings - Fork 63
Metanome Frontend
The frontend of Metanome is build with AngularJS and based on the Google Material Design guidelines.
The frontend is structured the following way:
├── src/
│ ├── main/
│ │ ├── java/
│ │ ├── resources/
│ │ ├── webapp/
├── pom.xml
The webapp
folder contains the actual frontend. It is structured according to the Best Practice Recommendations for Angular App Structure.
For local development you first have to install node
, bower
and gulp
.
To ensure that users, who check out Metanome, have all these dependencies we use the maven-frontend-plugin. This will locally install the dependencies when calling mvn clean install
, so that the user does not have to install anything by himself.
To start the backend jetty-server do the following:
- Run
mvn clean install
for building the.war
file in thetarget
directory. - Start the jetty-server with
mvn jetty:run-war
Each time you make changes to the backend you have to run these steps again.
When the backend is running you can start the frontend by executing gulp serve
in the src/main/webapp
directory. This launches a browser sync server on your source files, so you do not have to start the frontend again while making changes to your webapp.
You can then open the frontend under http://localhost:3000/.
For building an optimized version of the metanome application you have to execute gulp
of gulp build
in src/main/webapp
. The optimized version can then be found in /src/main/webapp/metanome
.