diff --git a/.env b/.env index ec7651f2..2312df7d 100644 --- a/.env +++ b/.env @@ -2,13 +2,13 @@ ORG_ID=Shuffle ENVIRONMENT_NAME=Shuffle -# Different locations etc -APP_DOWNLOAD_LOCATION=https://github.com/frikky/shuffle-apps # Remote location to download +# Remote github config for first load +APP_DOWNLOAD_LOCATION=https://github.com/frikky/shuffle-apps APP_DOWNLOAD_AUTH_USERNAME="" APP_DOWNLOAD_AUTH_PASSWORD="" -# Local location of your app directory. Can't use ~/ or ./ -APP_HOTLOAD_LOCATION="shuffle-apps" +# Local location of your app directory. Can't use ~/ +APP_HOTLOAD_LOCATION=./shuffle-apps # Other configs BACKEND_HOSTNAME=shuffle-backend diff --git a/backend/go-app/main.go b/backend/go-app/main.go index ef15e579..c144f29b 100644 --- a/backend/go-app/main.go +++ b/backend/go-app/main.go @@ -5809,7 +5809,6 @@ func createFs(basepath, pathname string) (billy.Filesystem, error) { // Fix the inner path here newpath := strings.ReplaceAll(path, pathname, "") fullpath := fmt.Sprintf("%s%s", basepath, newpath) - log.Printf("Fullpath: %s", fullpath) switch mode := info.Mode(); { case mode.IsDir(): err = fs.MkdirAll(fullpath, 0644) diff --git a/docker-compose.yml b/docker-compose.yml index c4d9c475..57af874a 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -25,7 +25,7 @@ services: - shuffle volumes: - /var/run/docker.sock:/var/run/docker.sock - - ${APP_HOTLOAD_LOCATION}=/shuffle-apps # Local + - ${APP_HOTLOAD_LOCATION}:/shuffle-apps environment: - ORG_ID=${ORG_ID} - DATASTORE_EMULATOR_HOST=shuffle-database:8000