Skip to content

Commit

Permalink
update links
Browse files Browse the repository at this point in the history
Signed-off-by: vsoch <vsoch@users.noreply.github.com>
  • Loading branch information
vsoch committed Aug 7, 2022
1 parent 235d4a7 commit b48f18c
Show file tree
Hide file tree
Showing 9 changed files with 25 additions and 19 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/build-deploy.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -19,15 +19,15 @@ jobs:

- name: Build Container
run: |
docker build -t ghcr.io/vsoch/tunel-django .
docker build -t ghcr.io/tunel-apps/tunel-django .
version=$(cat VERSION)
docker tag ghcr.io/vsoch/tunel-django:latest ghcr.io/vsoch/tunel-django:${version}
docker tag ghcr.io/tunel-apps/tunel-django:latest ghcr.io/tunel-apps/tunel-django:${version}
- name: Login and Deploy Test Container
if: (github.event_name != 'pull_request')
run: |
docker images
echo ${{ secrets.GITHUB_TOKEN }} | docker login ghcr.io -u ${{ secrets.GHCR_USERNAME }} --password-stdin
version=$(cat VERSION)
docker push ghcr.io/vsoch/tunel-django:latest
docker push ghcr.io/vsoch/tunel-django:${version}
docker push ghcr.io/tunel-apps/tunel-django:latest
docker push ghcr.io/tunel-apps/tunel-django:${version}
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,6 @@ and **Merged pull requests**. Critical items to know are:

The versions coincide with releases on pip. Only major versions will be released as tags on Github.

## [0.0.x](https://github.com/vsoch/tunel-django/tree/main) (0.0.x)
## [0.0.x](https://github.com/tunel-apps/tunel-django/tree/main) (0.0.x)
- Initial creation of project (0.0.0)

6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

You might want to quickly deploy an application to show off your analysis, paper,
or even create a programmatic RestFul API for others to use and run on a high performance computing
cluster. You should not need to start from scratch to do this! Brought to you by [tunel](https://github.com/vsoch/tunel), this template templates will get you started with a solid base for your development.
cluster. You should not need to start from scratch to do this! Brought to you by [tunel](https://github.com/tunel-apps/tunel), this template templates will get you started with a solid base for your development.

This particular teplate will get you started to deploy a Django application
that deploys via a web socket (most likely to be supported by your center, and it's less common
Expand All @@ -21,6 +21,6 @@ The template includes:

## Getting Started

You can jump in to the [documentation](https://vsoch.github.io/tunel-django) to
You can jump in to the [documentation](https://tunel-apps.github.io/tunel-django) to
get started. If you have any requests for features or questions, please don't hesitate
to [open an issue](https://github.com/vsoch/tunel-django/issues).
to [open an issue](https://github.com/tunel-apps/tunel-django/issues).
6 changes: 3 additions & 3 deletions docs/_config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,11 +24,11 @@ description: > # this means to ignore newlines until "baseurl:"
baseurl: "/tunel-django" # the subpath of your site, e.g. /blog

# This is mostly for testing
url: "https://vsoch.github.io" # the base hostname & protocol for your site
url: "https://tunel-apps.github.io" # the base hostname & protocol for your site

# Social (First three Required)
repo: "https://github.com/vsoch/tunel-django"
github_user: "vsoch"
repo: "https://github.com/tunel-apps/tunel-django"
github_user: "tunel-apps"
github_repo: "tunel-django"

# Optional
Expand Down
10 changes: 8 additions & 2 deletions docs/_docs/getting-started/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ the user documentation, see [the user guide]({{ site.baseurl }}/user-guide/).
To locally (if you are developing) you'll want to clone the project:

```bash
$ git clone https://github.com/vsoch/tunel-django
$ git clone https://github.com/tunel-apps/tunel-django
$ cd tunel-django
```

Expand Down Expand Up @@ -181,7 +181,13 @@ You can see the [Django docs for testing](https://docs.djangoproject.com/en/3.0/

### Deployment

**coming soon**
We recommend you deploy onto your HPC using tunel:

```bash
$ tunel run-app <server> singularity/socket/tunel-django
```

Full documentation can be found [here](https://tunel-apps.github.io/tunel/_static/apps/r/singularity-socket-tunel-django/).


At this point, you can check out the [apps]({{ site.baseurl }}/docs/usage/apps/) that come with the template that you can use, extend, or modify. We aim to provide a standard set of common use cases that you
Expand Down
2 changes: 1 addition & 1 deletion docs/pages/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ permalink: /
> Welcome to the Tunel Django Documentation!
This is one of several free-to-use templates that will get you started with a solid base for your development
to make a [Tunel app](https://vsoch.github.io/tunel) for HPC. If you have any requests for features or questions, please don't hesitate
to make a [Tunel app](https://tunel-apps.github.io/tunel) for HPC. If you have any requests for features or questions, please don't hesitate
to [open an issue]({{ site.repo }}/issues).

- [Getting Started]({{ site.baseurl }}/docs/getting-started/) with using tunel-django
Expand Down
2 changes: 1 addition & 1 deletion tuneldjango/apps/base/templates/base/navigation.html
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
</a>
</li>{% endif %}
<li class="nav-item">
<a class="nav-link nav-link-icon" href="{% if GITHUB_REPO %}{{ GITHUB_REPO }}{% else %}https://github.com/vsoch/tuneldjango{% endif %}" target="_blank">
<a class="nav-link nav-link-icon" href="{% if GITHUB_REPO %}{{ GITHUB_REPO }}{% else %}https://github.com/tunel-apps/tunel-django{% endif %}" target="_blank">
<i class="fab fa-github"></i>
</a>
</li>
Expand Down
6 changes: 3 additions & 3 deletions tuneldjango/apps/base/templates/main/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ <h1 class="ct-title" id="content">
<i class="ni ni-html5"></i>
</div>
<h6>Developer First</h6>
<p class="description">The <a href="https://vsoch.github.io/tunel-django">documentation</a> provides details for how to easily customize and deploy the application.</p>
<p class="description">The <a href="https://tunel-apps.github.io/tunel-django">documentation</a> provides details for how to easily customize and deploy the application.</p>
</div>
<div class="col-md-4">
<div class="icon icon-shape bg-gradient-danger rounded-circle text-white mb-3">
Expand All @@ -36,7 +36,7 @@ <h6>Technologies you know</h6>
<i class="ni ni-favourite-28"></i>
</div>
<h6>Community</h6>
<p class="description">If you need any help, we're here <a href="https://vsoch.github.io/tunel-django/">to support you</a></p>
<p class="description">If you need any help, we're here <a href="https://tunel-apps.github.io/tunel-django/">to support you</a></p>
</div>
</div>
<h3 id="resources-and-credits">Resources and credits</h3>
Expand All @@ -54,5 +54,5 @@ <h3 id="learn-more">Learn more</h3>
<li>Read and subscribe to <a href="https://vsoch.github.io/" target="_blank" rel="nofollow">@vsoch blog</a>.</li>
</ul>
<h3 id="quick-start">Quick start</h3>
<p><a href="https://vsoch.github.io/tunel-django/docs/getting-started" class="btn btn-primary my-4">Quick start here</a></p>
<p><a href="https://tunel-apps.github.io/tunel-django/docs/getting-started" class="btn btn-primary my-4">Quick start here</a></p>
{% endblock %}
2 changes: 1 addition & 1 deletion tuneldjango/apps/users/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ def send_email(
if request is not None:
messages.warning(
request,
"SendGrid secrets were not found in the environment. Please see https://vsoch.github.io/tuneldjango/docs/getting-started/#sendgrid-secrets",
"SendGrid secrets were not found in the environment. Please see https://tunel-apps.github.io/tuneldjango/docs/getting-started/#sendgrid-secrets",
)
return False

Expand Down

0 comments on commit b48f18c

Please sign in to comment.