Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/jtdowney/tailscale-hello
Tailscale connectivity test application
https://github.com/jtdowney/tailscale-hello
Last synced: about 2 months ago
JSON representation
Tailscale connectivity test application
- Host: GitHub
- URL: https://github.com/jtdowney/tailscale-hello
- Owner: jtdowney
- License: mit
- Created: 2023-08-23T00:54:52.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2024-09-10T20:22:03.000Z (5 months ago)
- Last Synced: 2024-10-16T14:59:38.037Z (3 months ago)
- Language: Rust
- Homepage:
- Size: 220 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# tailscale-hello
This is a simple application that can be deployed on your Tailscale tailnet to test connectivity. When you visit http://hello you will be redirected and presented with a page that welcomes you to Tailscale.
## Run on fly.io
1. Create and log in to your fly.io account
2. Launch a new fly app
```sh
flyctl launch --copy-config --no-deploy
```
3. Set the Tailscale auth key
```sh
flyctl secrets set TS_AUTHKEY=
```
4. Deploy
```sh
flyctl deploy
```## Contributing
The CSS is using tailwind and requires nodejs to build a new CSS output. During development, you can run `npm run watch` to watch for changes and rebuild the CSS. The css is checked in so you don't need to do this to run the app. There is a Procfile that runs both CSS and the application in a watch mode to speed up development.