Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions readme.adoc
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
= VideoShop - A Salespoint example project
:experimental:

image:https://github.com/st-tu-dresden/videoshop/workflows/Build%20Maven%20artifacts/badge.svg["Build Status", link="https://github.com/st-tu-dresden/videoshop/actions"]
This project is a fork of https://github.com/st-tu-dresden/videoshop where it is used to make students familiar with basic technologies they're going to use during the Software Engineering Lab at Technical University of Dresden.

Purpose of this sample project is to make students familiar with basic technologies they're going to use during the Software Engineering Lab at Technical University of Dresden.
At Hochschule Merseburg, this project is used for exactly the same purpose in the Software-Project (module Programmierung 3).

## Quickstart

Expand All @@ -12,7 +12,7 @@ Also, note that you have to run `mvnw.cmd` instead of `./mvnw` if you run Window

[source, shell]
----
$ git clone https://github.com/st-tu-dresden/videoshop
$ git clone https://github.com/HOME-programming-lab/videoshop
$ cd videoshop
$ ./mvnw clean package
$ ./mvnw spring-boot:run
Expand Down
2 changes: 2 additions & 0 deletions src/main/java/videoshop/catalog/CatalogDataInitializer.java
Original file line number Diff line number Diff line change
Expand Up @@ -73,6 +73,8 @@ public void initialize() {
.save(new Disc("Hot Shots! Part Deux", "hspd", Money.of(9999.0, EURO), "Action/Comedy/War", DiscType.DVD));
videoCatalog.save(new Disc("Avatar: The Last Airbender", "tla", Money.of(19.99, EURO), "Animation/Action/Adventure",
DiscType.DVD));
videoCatalog.save(new Disc("Casa negra ","Abidox", Money.of(12.00,EURO),"Comedy/Drama/Horror",DiscType.DVD));


videoCatalog.save(new Disc("Secretary", "secretary", Money.of(6.99, EURO), "Political Drama", DiscType.BLURAY));
videoCatalog.save(new Disc("The Godfather", "tg", Money.of(19.99, EURO), "Crime/Drama", DiscType.BLURAY));
Expand Down