diff --git a/.github/workflows/check-spec.yml b/.github/workflows/check-spec.yml index 27b8b7c..17f820d 100644 --- a/.github/workflows/check-spec.yml +++ b/.github/workflows/check-spec.yml @@ -179,7 +179,7 @@ jobs: # Create a package.json file using EOF notation cat << EOF | sudo tee -a clients/typescript-axios/package.json { - "name": "@battery-intelligence-lab/galv", + "name": "@galv-team/galv", "version": "$VERSION", "description": "Galv API client using Typescript-Axios", "main": "index.ts", diff --git a/README.md b/README.md index 06ea01e..ad0ee6b 100644 --- a/README.md +++ b/README.md @@ -7,7 +7,7 @@ > API client libraries: > -> [![NPM Downloads](https://img.shields.io/npm/dm/%40battery-intelligence-lab%2Fgalv)](https://www.npmjs.com/package/@battery-intelligence-lab/galv) +> [![NPM Downloads](https://img.shields.io/npm/dm/%40galv-team%2Fgalv)](https://www.npmjs.com/package/@galv-team/galv) > [![PyPI - Downloads](https://img.shields.io/pypi/dm/galv)](https://pypi.org/project/galv/) @@ -29,13 +29,13 @@ Each [release](/galv-team/galv-backend/releases) is accompanied by a [Docker ima You can acquire the image by pulling it from GitHub Packages: ```bash -docker pull ghcr.io/battery-intelligence-lab/galv-backend:latest +docker pull ghcr.io/galv-team/galv-backend:latest ``` You can then run the image using the following command: ```bash -docker run -p 8001:80 ghcr.io/battery-intelligence-lab/galv-backend:latest +docker run -p 8001:80 ghcr.io/galv-team/galv-backend:latest ``` You will need to add in a database and set the environment variables appropriately. diff --git a/fly.toml b/fly.toml index f155b0c..424d316 100644 --- a/fly.toml +++ b/fly.toml @@ -8,7 +8,7 @@ primary_region = "lhr" console_command = "/code/backend_django/manage.py shell" [build] - image = "ghcr.io/battery-intelligence-lab/galv-backend:latest" + image = "ghcr.io/galv-team/galv-backend:latest" [deploy] # release_command = "/code/fly_setup.sh" @@ -18,6 +18,7 @@ console_command = "/code/backend_django/manage.py shell" VIRTUAL_HOST = "galv-backend-dev.fly.dev" FRONTEND_VIRTUAL_HOST = "http://galv-frontend-dev.fly.dev,https://galv-frontend-dev.fly.dev" DJANGO_SETTINGS_MODULE = "config.settings" + DJANGO_ALLOW_LOCAL_DATA_STORAGE = "True" # DJANGO_SETTINGS = "dev" DJANGO_EMAIL_HOST = 'smtp.gmail.com' DJANGO_EMAIL_USE_TLS = "False"