Skip to content

Commit

Permalink
Merge pull request #244 from saidone75/dev
Browse files Browse the repository at this point in the history
Dev
  • Loading branch information
saidone75 authored Apr 29, 2024
2 parents 336eb52 + e075a23 commit f0ac6e3
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
8 changes: 4 additions & 4 deletions alfresco.sh
Original file line number Diff line number Diff line change
Expand Up @@ -6,12 +6,12 @@ start() {
docker volume create cral-acs-volume
docker volume create cral-db-volume
docker volume create cral-ass-volume
docker-compose -f "$COMPOSE_FILE_PATH" up --build -d
docker-compose -f "$COMPOSE_FILE_PATH" --env-file ./docker/.env up --build -d
}

down() {
if [ -f "$COMPOSE_FILE_PATH" ]; then
docker-compose -f "$COMPOSE_FILE_PATH" down
docker-compose -f "$COMPOSE_FILE_PATH" --env-file ./docker/.env down
fi
}

Expand All @@ -22,11 +22,11 @@ purge() {
}

tail() {
docker-compose -f "$COMPOSE_FILE_PATH" logs -f
docker-compose -f "$COMPOSE_FILE_PATH" --env-file ./docker/.env logs -f
}

tail_all() {
docker-compose -f "$COMPOSE_FILE_PATH" logs --tail="all"
docker-compose -f "$COMPOSE_FILE_PATH" --env-file ./docker/.env logs --tail="all"
}

case "$1" in
Expand Down
4 changes: 2 additions & 2 deletions src/cral/api/core/ratings.clj
Original file line number Diff line number Diff line change
Expand Up @@ -16,11 +16,11 @@

(ns cral.api.core.ratings
(:require [clj-http.lite.client :as client]
[cral.config :as config]
[cral.utils.utils :as utils]
[clj-http.lite.client :as client]
[cral.config :as config]
[cral.config :as config]
[cral.model.core]
[cral.utils.utils :as utils]
[cral.utils.utils :as utils])
(:import (clojure.lang PersistentHashMap)
(cral.model.auth Ticket)
Expand Down

0 comments on commit f0ac6e3

Please sign in to comment.