-
Notifications
You must be signed in to change notification settings - Fork 20
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 MServer
Git 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
MServer
undMSearch
mit Netbeans öffnen
- Falls noch nicht vorhanden: Plugin buildship installieren
- Projekt
MServer
als Gradle-Projekt importieren.MSearch
wird automatisch mit importiert.