Skip to content
Merged
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
Binary file modifiedREADME.md
Binary file not shown.
8 changes: 4 additions & 4 deletions local_compose_down.sh
Original file line numberDiff line numberDiff line change
Expand Up@@ -2,11 +2,11 @@

set -e

echo "Starting all docker containers..."
docker-compose -f docker-compose.local.yml down
echo "Stopping all docker containers..."
dockercompose -f docker-compose.local.yml down

echo "Pruning unused Docker images..."
docker image prune -f

echo "Containers are up and running."
docker-compose ps -a
echo "Containers are down and not running."
dockercompose ps -a
4 changes: 2 additions & 2 deletions local_compose_up.sh
Original file line numberDiff line numberDiff line change
Expand Up@@ -14,10 +14,10 @@ if [ ! -d "redis_data_local" ]; then
fi

echo "Starting all docker containers..."
docker-compose -f docker-compose.local.yml up -d
dockercompose -f docker-compose.local.yml up -d

echo "Pruning unused Docker images..."
docker image prune -f

echo "Containers are up and running."
docker-compose ps -a
dockercompose ps -a
Original file line numberDiff line numberDiff line change
Expand Up@@ -14,4 +14,4 @@
public class CorsPropertiesConfig {

private List<String> allowedOrigins;
}
}
Original file line numberDiff line numberDiff line change
Expand Up@@ -85,7 +85,6 @@ public class SiteUser {
@OneToMany(mappedBy = "siteUser", cascade = CascadeType.ALL, orphanRemoval = true)
private List<GpaScore> gpaScoreList = new ArrayList<>();


public SiteUser(
String email,
String nickname,
Expand Down