Wahlzeit is an open source web application that lets users upload photos and rate photos of other users, on a 1..10 scale. Users get to present their best photos and learn what other users thought of their photos.
Wahlzeit is used to teach agile methods and open source software development at the Professorship of Open Source Software at the University of Erlangen.
It is an easy-to-learn yet complete Java web application that is available under the GNU Affero Public License v3 license, see the LICENSE.txt file.
Wahlzeit is a Google App Engine app, that can be used on your local machine or be deployed to Google App Engine to reach it online.
For more information, see http://github.com/dirkriehle/wahlzeit and http://osr.cs.fau.de.
First download repository:
- Fulfill prerequisites: install Java JDK, set JAVA_HOME, and install git
- open console and select the directory where the directory
MigrateWahlzeitIntoTheCloud
containing the sourcecode should be created git clone https://github.com/tfrdidi/MigrateWahlzeitIntoTheCloud.git
cd MigrateWahlzeitIntoTheCloud
./gradlew appengineRun
- wait until gradle and project dependencies are downloaded and the local instance is started
Open http://localhost:8080 to use Wahlzeit on your local machine.
- run Wahlzeit on your local machine (see above)
- create a remote java debug configuration in your IDE with host
localhost
and port8000
(not 8080)
Create an Google App Engine instance:
- if you don't have already one, create a Google account
- go to https://console.developers.google.com and login with your Google account
- now you are in the developers console, there select "create a project" 1. choose a project name, which used later as your-project-ID 2. accept the terms of service
Configure your repository and upload Wahlzeit
- store your your-project-ID in your repository: 1. open the file /MigrateWahlzeitIntoTheCloud/src/main/webapp/WEB-INF/appengine-web.xml 2. replace the project name with your-project-ID: <application>your-project-ID</application> 3. save and close the appengine-web.xml
./gradlew appengineUpdate
- a browser window pops up and asks for permission, accept it
- copy the code from the following browser window to your gradle console
When uploaded, open https://your-project-ID.appspot.com to use Wahlzeit on Google App Engine. It may take some seconds until it is completely deployed.
Done!