Skip to content

Commit 3e45365

Browse files
committed
fix: Move ancv.io -> ancv.povel.dev
.io domain will be retired
1 parent 75ae958 commit 3e45365

File tree

6 files changed

+15
-13
lines changed

6 files changed

+15
-13
lines changed

README.md

+8-8
Original file line numberDiff line numberDiff line change
@@ -40,43 +40,43 @@ Be warned though, for this is kinda useless and just for fun:
4040
- curl:
4141
4242
```bash
43-
curl -L ancv.io/heyho
43+
curl -L ancv.povel.dev/heyho
4444
```
4545
46-
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`.
46+
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`.
4747
It's shorter than its also perfectly viable alternative:
4848
4949
```bash
50-
curl https://ancv.io/heyho
50+
curl https://ancv.povel.dev/heyho
5151
```
5252
5353
Lastly, you might want to page the output for easiest reading, top-to-bottom:
5454
5555
```bash
56-
curl -sL ancv.io/heyho | less
56+
curl -sL ancv.povel.dev/heyho | less
5757
```
5858
5959
If that garbles the rendered output, try `less -r` aka [`--raw-control-chars`](https://man7.org/linux/man-pages/man1/less.1.html).
6060
6161
- wget:
6262
6363
```bash
64-
wget -O - --quiet ancv.io/heyho
64+
wget -O - --quiet ancv.povel.dev/heyho
6565
```
6666
6767
where `-O` is short for [`--output-document`](https://linux.die.net/man/1/wget), used here to redirect to stdout.
6868
6969
- PowerShell 7:
7070
7171
```powershell
72-
(iwr ancv.io/heyho).Content
72+
(iwr ancv.povel.dev/heyho).Content
7373
```
7474
7575
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.
7676
- PowerShell 5:
7777
7878
```powershell
79-
(iwr -UseBasicParsing ancv.io/heyho).Content
79+
(iwr -UseBasicParsing ancv.povel.dev/heyho).Content
8080
```
8181
8282
where `-UseBasicParsing` is *only* required if you haven't set up Internet Explorer yet ([yes, really](https://stackoverflow.com/q/38005341/11477374)).
@@ -195,7 +195,7 @@ Self-hosting is a first-class citizen here.
195195

196196
### Context: Cloud Hosting
197197

198-
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.
198+
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.
199199
That's convenient to get started: simply create a `resume.json` gist and you're good to go within minutes.
200200
It can also be used for debugging and playing around; it's a playground of sorts.
201201

ancv/reflection.py

+3-1
Original file line numberDiff line numberDiff line change
@@ -110,7 +110,9 @@ def project_urls(
110110
self,
111111
) -> t.Annotated[
112112
dict[str, str],
113-
Field(description="Map of project URLs, e.g. {'Homepage': 'https://ancv.io/'}"),
113+
Field(
114+
description="Map of project URLs, e.g. {'Homepage': 'https://ancv.povel.dev/'}"
115+
),
114116
]:
115117
"""Converts the 'Name, https://example.com' array of project URLs to a dict.
116118

docs/images/concept-flow-chart.svg

+1-1
Loading

pyproject.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ dependencies = [
4242
]
4343

4444
[project.urls]
45-
Homepage = "https://ancv.io"
45+
Homepage = "https://ancv.povel.dev"
4646
Repository = "https://github.com/alexpovel/ancv/"
4747
Issues = "https://github.com/alexpovel/ancv/issues/"
4848
Changelog = "https://github.com/alexpovel/ancv/blob/main/CHANGELOG.md"

schema.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
"properties": {
1717
"ancv": {
1818
"type": "object",
19-
"description": "ancv-specific (https://ancv.io) properties",
19+
"description": "ancv-specific (https://ancv.povel.dev) properties",
2020
"properties": {
2121
"template": {
2222
"type": "string",

uv.lock

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)