-
Notifications
You must be signed in to change notification settings - Fork 21
Entwicklung
Alexander edited this page Nov 9, 2016
·
5 revisions
- Oracle JDK 8 / OpenJDK 8 + JavaFX
- git und git-flow
mkdir mediathekview
cd mediathekview
git clone https://github.com/mediathekview/MServer.git
git clone https://github.com/mediathekview/MSearch.git
cd MServerGit workflow Git Flow cheatsheet
# Installationsanweisungen findest du im Cheatsheet.
git flow init # Alle Einstellungen auf Standard# Als Name wird immer eine Issue Nummer verwendet, also vorher ein Issue erstellen, wenn nicht schon vorhanden.
git flow feature start '#112' # Beispiel
# entwickeln
git flow feature finish '#112' # Feature fertig stellen# Als Name wird wieder nur eine Issue Nummer verwendet.
git flow hotfix start '#113' # Beispiel
# hotfix entwickeln
git push origin '#113' # Hochladen und Pull Request erstellen.cd MediathekView
./gradlew run- Verzeichnisse
MServerundMSearchmit Netbeans öffnen
- Falls noch nicht vorhanden: Plugin buildship installieren
- Projekt
MServerals Gradle-Projekt importieren.MSearchwird automatisch mit importiert.