Skip to content

Commit

Permalink
changed the repo url in a couple places, removed hard coded url
Browse files Browse the repository at this point in the history
  • Loading branch information
jessdtate committed May 24, 2024
1 parent c7f4c95 commit a6c28ea
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion CNAME
Original file line number Diff line number Diff line change
@@ -1 +1 @@
www.shapeworks-cloud.org
https://shapeworks-5f5454939472.herokuapp.com/home
2 changes: 1 addition & 1 deletion ansible/playbook.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
- role: girder.celery
vars:
celery_app: shapeworks_cloud.celery
celery_repository_url: https://github.com/girder/shapeworks-cloud.git
celery_repository_url: https://github.com/SCIInstitute/shapeworks-cloud.git
celery_environment: "{{ django_vars }}"
tasks:
- name: Stop celery service to prevent manage_workers task from stopping instances
Expand Down
2 changes: 1 addition & 1 deletion shapeworks_cloud/core/management/commands/makeclient.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ def handle(self, uri, **options):
uri = DEFAULT_REDIRECT_URI

site = Site.objects.get_current() # type: ignore
site.domain = 'app.shapeworks-cloud.org'
# site.domain = 'app.shapeworks-cloud.org'
site.name = 'ShapeWorks Cloud'
site.save()

Expand Down
2 changes: 1 addition & 1 deletion swcc/swcc/api.py
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ def swcc_session(**kwargs):
class SwccSession(BaseUrlSession):
def __init__(
self,
base_url: str = 'https://app.shapeworks-cloud.org/api/v1',
# base_url: str = 'https://app.shapeworks-cloud.org/api/v1',
token: Optional[str] = None,
**kwargs,
):
Expand Down
2 changes: 1 addition & 1 deletion swcc/swcc/cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -146,7 +146,7 @@ def main():
err=True,
)
click.echo(
'https://github.com/girder/shapeworks-cloud/issues/new',
'https://github.com/SCIInstitute/shapeworks-cloud/issues/new',
err=True,
)

Expand Down

0 comments on commit a6c28ea

Please sign in to comment.