Skip to content

Commit

Permalink
fix: Move ancv.io -> ancv.povel.dev
Browse files Browse the repository at this point in the history
.io domain will be retired
  • Loading branch information
alexpovel committed Jan 5, 2025
1 parent 75ae958 commit 3e45365
Show file tree
Hide file tree
Showing 6 changed files with 15 additions and 13 deletions.
16 changes: 8 additions & 8 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -40,43 +40,43 @@ Be warned though, for this is kinda useless and just for fun:
- curl:
```bash
curl -L ancv.io/heyho
curl -L ancv.povel.dev/heyho
```
with `-L` being shorthand for [`--location`](https://curl.se/docs/manpage.html), allowing you to follow the redirect from `http://ancv.io` through to `https://ancv.io`.
with `-L` being shorthand for [`--location`](https://curl.se/docs/manpage.html), allowing you to follow the redirect from `http://ancv.povel.dev` through to `https://ancv.povel.dev`.
It's shorter than its also perfectly viable alternative:
```bash
curl https://ancv.io/heyho
curl https://ancv.povel.dev/heyho
```
Lastly, you might want to page the output for easiest reading, top-to-bottom:
```bash
curl -sL ancv.io/heyho | less
curl -sL ancv.povel.dev/heyho | less
```
If that garbles the rendered output, try `less -r` aka [`--raw-control-chars`](https://man7.org/linux/man-pages/man1/less.1.html).
- wget:
```bash
wget -O - --quiet ancv.io/heyho
wget -O - --quiet ancv.povel.dev/heyho
```
where `-O` is short for [`--output-document`](https://linux.die.net/man/1/wget), used here to redirect to stdout.
- PowerShell 7:
```powershell
(iwr ancv.io/heyho).Content
(iwr ancv.povel.dev/heyho).Content
```
where `iwr` is an alias for [`Invoke-Webrequest`](https://docs.microsoft.com/en-us/powershell/module/microsoft.powershell.utility/invoke-webrequest?view=powershell-7.2), returning an object whose `Content` we access.
- PowerShell 5:
```powershell
(iwr -UseBasicParsing ancv.io/heyho).Content
(iwr -UseBasicParsing ancv.povel.dev/heyho).Content
```
where `-UseBasicParsing` is *only* required if you haven't set up Internet Explorer yet ([yes, really](https://stackoverflow.com/q/38005341/11477374)).
Expand Down Expand Up @@ -195,7 +195,7 @@ Self-hosting is a first-class citizen here.

### Context: Cloud Hosting

The <https://ancv.io> site is hosted on [Google Cloud Run](https://cloud.google.com/run) (serverless) and deployed there [automatically](https://github.com/alexpovel/ancv/runs/8172131447), such that the latest release you see here is also the code executing in that cloud environment.
The <https://ancv.povel.dev> site is hosted on [Google Cloud Run](https://cloud.google.com/run) (serverless) and deployed there [automatically](https://github.com/alexpovel/ancv/runs/8172131447), such that the latest release you see here is also the code executing in that cloud environment.
That's convenient to get started: simply create a `resume.json` gist and you're good to go within minutes.
It can also be used for debugging and playing around; it's a playground of sorts.

Expand Down
4 changes: 3 additions & 1 deletion ancv/reflection.py
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,9 @@ def project_urls(
self,
) -> t.Annotated[
dict[str, str],
Field(description="Map of project URLs, e.g. {'Homepage': 'https://ancv.io/'}"),
Field(
description="Map of project URLs, e.g. {'Homepage': 'https://ancv.povel.dev/'}"
),
]:
"""Converts the 'Name, https://example.com' array of project URLs to a dict.
Expand Down
2 changes: 1 addition & 1 deletion docs/images/concept-flow-chart.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ dependencies = [
]

[project.urls]
Homepage = "https://ancv.io"
Homepage = "https://ancv.povel.dev"
Repository = "https://github.com/alexpovel/ancv/"
Issues = "https://github.com/alexpovel/ancv/issues/"
Changelog = "https://github.com/alexpovel/ancv/blob/main/CHANGELOG.md"
Expand Down
2 changes: 1 addition & 1 deletion schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
"properties": {
"ancv": {
"type": "object",
"description": "ancv-specific (https://ancv.io) properties",
"description": "ancv-specific (https://ancv.povel.dev) properties",
"properties": {
"template": {
"type": "string",
Expand Down
2 changes: 1 addition & 1 deletion uv.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 3e45365

Please sign in to comment.