fix tangled repo urls #2

open
opened by jacobs.land targeting main from jacobs.land/slices: docs/fix-repo-urls

Tangled now redirects tangled.sh to tangled.org and also redirects /slices.network/slices to /@slices.network/slices. Some part of this causes issues when cloning from the URL in the README.

$ git clone https://tangled.sh/slices.network/slices
Cloning into 'slices'...
remote: service unsupported: ''
fatal: unable to access 'https://tangled.sh/slices.network/slices/': The requested URL returned error: 403

Updating it to the URL in the tangled UI works as expected.

I also updated the only other usage of tangled.sh and /slices.network/slices without the @ to avoid relying on the redirect.

Changed files
+2 -2
docs
+1 -1
README.md
···
1. Clone the repository:
```bash
-
git clone https://tangled.sh/slices.network/slices
cd core
```
···
1. Clone the repository:
```bash
+
git clone https://tangled.org/@slices.network/slices
cd core
```
+1 -1
docs/getting-started.md
···
- Join our [Discord community](https://discord.gg/slices)
- Check out [example apps](https://github.com/slices/examples)
- Read the [AT Protocol docs](https://atproto.com/)
-
- Report issues on [Tangled](https://tangled.sh/slices.network/slices/issues)
···
- Join our [Discord community](https://discord.gg/slices)
- Check out [example apps](https://github.com/slices/examples)
- Read the [AT Protocol docs](https://atproto.com/)
+
- Report issues on [Tangled](https://tangled.org/@slices.network/slices/issues)