...
Fork the Sage-Bionetworks SynapseWebClient repository into your own GitHub account: https://help.github.com/articles/fork-a-repo
- Clone the SynapseWebClient project down to your computer:
git clone https://github.com/[YOUR GITHUB NAME]/SynapseWebClient.git
- Change into the proper directory with:
cd SynapseWebClient
- Set up upstream with:
git remote add upstream https:
//github
.com
/Sage-Bionetworks/SynapseWebClient
- Fetch and merge changes from the Sage Bionetworks repo, which was named upstream:
git fetch upstream - Follow the instructions on the Platform Bootstrap.
- Now, from an up-to-date clone of Synapse-Repository-Services on your local box:
mvn clean install -Dorg.sagebionetworks.database.drop.schema=true
Set up the Eclipse Build
- Install Eclipse (Mars 4.5, Neon 4.6 GWT super dev mode does not start properly)
- Install Google Web Toolkit, Google App Engine SDK, and Google plug-in for Eclipse using Eclipse new software from http://www.gwtproject.org/download.html. Note: if you were using an older version of this plugin you will need to uninstall it and then re-install it to ensure it has GWT GWT 2.78 beta1 support. 0 support. Another note: Installing the Google App Engine Maven Integration software made Eclipse error when building the SynapseWebClient. It would not work until I uninstalled it.
- Install the Maven2Eclipse plugin: http://download.eclipse.org/technology/m2e/releases(Optional) Install the EGit eclipse plugin: http://www.eclipse.org/egit/download/
- Create a GitHub user account
- Internal Sage developers will be added as a developer on the project and will be able to push directly
- External contributors Contributors should fork the repository and submit GitHub Pull Requests for code inclusion.
Set up Git: https://help.github.com/articles/set-up-git
- Import the project as a maven project
- File → Import → Maven → Existing Maven Projects
- Next, in Root Directory enter the local path to your repository clone
- Next, Finish
- (Optional) Enable Git Team tracking
- Now right click on portal (project name) → Team → Share Project
- Next, Select repository type Git
- Next, Check the box "Use or create repository in parent folder of project
- Next, Finish
- You need to make sure the GWT xml files are on the classpath. All of these resources can be found in src/main/resources and src/test/resources directories.
- Right-click on portal (project name) → Build Path → Configure Build Path...
- Remove the "Exclude" filter from the source tab on the src/main/resources and src/test/resources directories.
- We need to tell the GWT Eclipse-plugin that this is a GWT project. Do this by Right-Clicking on the project in the package explorer and select: Google → Web Toolkit Settings...
- From the resulting dialog make sure the "Use Google Web Tookit" check box is selected.
- Also make sure you are using GWT 2.8 beta1
- We need to tell the Google plugin where our web app directory can be found. Right-click on the project in the package explorer and select Properties.
- From the tree on the left of the dialog navigate to Google → Web Application
- Check the the check box: "This project has a WAR directory"
- With the "Browse" button, select "src/main/webapp"
- UN-CHECK the "Launch and deploy from this directory" This is very important, if you keep this checked then Maven will not be able to generate a clean WAR file. If you see "GWT needs to recompile" when you deploy your WAR then you probably have this box checked.
- Now make sure GWT can compile your code
- Right-Click on the project from the package explorer.
- Select Google→GWT Compile...
- Under the "Entry Point Modules" you should see "Portal - org.sagebionetworks.web", if not, then add it with the add button.
- The first time you run this you will be asked to select the output directory where GWT will compile the code. You want this to match the Maven WAR output directory, so use "target/portal-<VERSION>-SNAPSHOT"
- If you get compilation errors from the JavaScript validator (i.e. NullPointerException), navigate to the project's properties → JavaScript → Include Path → Source, and exclude all files from the source. If an OutOfMemoryError was thrown while compiling, you can click the "Advanced" tab towards the bottom of the Google → GWT Compile window and add "-Xms512M -Xmx1524M" to the VM arguments to increase heap space.
- If the GWT Compile successfully compiled the 5 permutations, then you're ready to run the application in development mode.
- Option 1: start from within Eclipse.
- Right-Click on the project in the package explorer
- Select: Run As → Web Application (GWT Super Dev Mode)
- Set the run configuration VM Arguments to the following: "-XX:MaxPermSize=512m -Xms512m -Xmx2048m -XstartOnFirstThread". Also look at your eclipse.ini file (if launching SDM from Eclipse).
- Double-click on the link provided in the Development Mode window to view the portal in your browser. If you get asked what page to start on choose Portal.html.
- Option 2:
- build and run
- from the command line
- .
- Run 'mvn
- Option 1: start from within Eclipse.
Point to local backend services
- Change the synapse.version tag to
develop-SNAPSHOT
.- The synapse.version tag in root pom.xml has the form
2012-08-06-3e90a85-44
, it has the date (2012-08-06) and the first 7 chars of the commit hash,3e90a85
.
- The synapse.version tag in root pom.xml has the form
- Now, from an up-to-date clone of Synapse-Repository-Services on your local box:
cd integration-test
mvn cargo:run
Verify the services are running correctly by visiting http://localhost:8080/services-repository-develop-SNAPSHOT/repo/v1/version you should see something like this:
Code Block {"version":"develop-SNAPSHOT"}
- clean install'
- Run 'mvn gwt:run'
Eclipse Workspace Settings
...
- For dependency injection, a an example of Inversion of Control (IoC), we are using a combination of GIN and Guice.
- Guice - is the base IoC technology but it is only fully functional in Server-side. http://code.google.com/docreader/#p=google-guice&s=google-guice&t=Motivation
- Gin - provides basic IoC for GWT client-side code. http://code.google.com/p/google-gin/wiki/GinTutorial
- Guice Servlet - This is a sub-project of Guice that allows dependency inject into Servelets. http://code.google.com/p/google-guice/wiki/ServletModule
- Http REST calls are currently made using Spring's RestTemplate. http://blog.springsource.com/2009/03/27/rest-in-spring-3-resttemplate/
- To create API REST stub-services we are using a combination of two technologies:
- Jersey - provides a quick and easy method for transforming simple POJO's into RESTful web services using annotations. http://jersey.java.net/nonav/documentation/latest/user-guide.html
- Grizzly - The GrizzlyWebContainerFactory makes it simple to start a local web container. http://blog.msbbc.co.uk/2008/11/java-using-jersey-and-grizzly-to-create.html
...
Cross-browser testing
We have a shared account to use BrowserStack to test the website for cross browser compatibility issues.
Alternatively, for testing IE on Mac I use VirtualBox with an image provided by Microsoft from modern.IE. For this to work, in your Windows VM, you will need to map an ip to outer in order to access your local machine (note, Windows UAC requires you to do this as an admin).
How to point to the local stack
- Follow the instructions on the Platform Bootstrap to set up local backend stack.
Build and launch a local backend stack. From an up-to-date clone of Synapse-Repository-Services on your local box:
Build the local stack by running 'mvn clean install -Dorg.sagebionetworks.database.drop.schema=true'.
- Now launch it:
- cd integration-test
- mvn cargo:run
Verify the services are running correctly by visiting http://localhost:8080/services-repository-develop-SNAPSHOT/repo/v1/version you should see something like this:
Code Block {"version":"develop-SNAPSHOT"}
- In the SWC project root pom.xml, change the synapse.version tag to
develop-SNAPSHOT (so that the dependency is pointing to the code that's running on your local stack).
- Set the repository endpoints in your maven settings.xml file by adding the following properties:
<org.sagebionetworks.authenticationservice.privateendpoint>http://localhost:8080/services-repository-develop-SNAPSHOT/auth/v1</org.sagebionetworks.authenticationservice.privateendpoint>
<org.sagebionetworks.authenticationservice.publicendpoint>http://localhost:8080/services-repository-develop-SNAPSHOT/auth/v1</org.sagebionetworks.authenticationservice.publicendpoint>
<org.sagebionetworks.repositoryservice.endpoint>http://localhost:8080/services-repository-develop-SNAPSHOT/repo/v1</org.sagebionetworks.repositoryservice.endpoint>
<org.sagebionetworks.fileservice.endpoint>http://localhost:8080/services-repository-develop-SNAPSHOT/file/v1</org.sagebionetworks.fileservice.endpoint>
<org.sagebionetworks.searchservice.endpoint>http://localhost:8080/services-repository-develop-SNAPSHOT/</org.sagebionetworks.searchservice.endpoint>
<org.sagebionetworks.portal.endpoint>http://127.0.0.1:8888/Portal.html</org.sagebionetworks.portal.endpoint>
Note that emails will not be sent when pointing to a local repo, the SynapseEmailService will instead write files to the devdatathe devdata.sagebase.org s3 org s3 bucket in format <to_email_address>.json
Restart the Portal app to load these properties from settings.xml.
How to point to staging
Set the repository endpoints in your maven settings.xml file by adding the following properties:
<org.sagebionetworks.authenticationservice.privateendpoint>https://auth-staging.prod.sagebase.org/auth/v1</org.sagebionetworks.authenticationservice.privateendpoint>
<org.sagebionetworks.authenticationservice.publicendpoint>https://auth-staging.prod.sagebase.org/auth/v1</org.sagebionetworks.authenticationservice.publicendpoint>
<org.sagebionetworks.repositoryservice.endpoint>https://repo-staging.prod.sagebase.org/repo/v1</org.sagebionetworks.repositoryservice.endpoint>
<org.sagebionetworks.fileservice.endpoint>https://file-staging.prod.sagebase.org/file/v1</org.sagebionetworks.fileservice.endpoint>
<org.sagebionetworks.searchservice.endpoint>https://search-staging.prod.sagebase.org/</org.sagebionetworks.searchservice.endpoint>
<org.sagebionetworks.portal.endpoint>http://127.0.0.1:8888/Portal.html</org.sagebionetworks.portal.endpoint>
Restart the Portal app to load these properties from settings.xml.
How to point to prod
Set the repository endpoints in your maven settings.xml file by adding the following properties:
<org.sagebionetworks.authenticationservice.privateendpoint>https://auth-prod.prod.sagebase.org/auth/v1</org.sagebionetworks.authenticationservice.privateendpoint>
<org.sagebionetworks.authenticationservice.publicendpoint>https://auth-prod.prod.sagebase.org/auth/v1</org.sagebionetworks.authenticationservice.publicendpoint>
<org.sagebionetworks.repositoryservice.endpoint>https://repo-prod.prod.sagebase.org/repo/v1</org.sagebionetworks.repositoryservice.endpoint>
<org.sagebionetworks.fileservice.endpoint>https://file-prod.prod.sagebase.org/file/v1</org.sagebionetworks.fileservice.endpoint>
<org.sagebionetworks.searchservice.endpoint>https://search-prod.prod.sagebase.org/</org.sagebionetworks.searchservice.endpoint>
<org.sagebionetworks.portal.endpoint>http://127.0.0.1:8888/Portal.html?gwt.codesvr=127.0.0.1:9997</org.sagebionetworks.portal.endpoint>
Pointing to prod is especially useful at transitions between releases, so that there is a stack that you can point at.
Restart the Portal app to load these properties from settings.xml.
Documenting complicated UI in the code
...