Quickstart: Difference between revisions
More actions
Added Quickstart! |
Revised Quickstart to include SSH key creation. |
||
| Line 1: | Line 1: | ||
Before you can access your Nest container you need to apply for a container at https://dashboard.hackclub.app. | Before you can access your Nest container you need to apply for a container at https://dashboard.hackclub.app. | ||
You'll be asked to pick a username, paste your public SSH key, and tell us what you'll use Nest for. If you're confused, here's how to create/find your SSH public key: | |||
1. You might have already generated an SSH key! If you're unsure, use this command to check:<syntaxhighlight> | |||
cat ~/.ssh/id_ed25519.pub | |||
</syntaxhighlight>If it returns a long string starting with <code>ssh-ed25519</code>, then you already have one! Just copy that entire thing! | |||
2. If that command brought back "No such file or directory" or a similar issue, it means you don't have an SSH key. You can generate one now by running this command:<syntaxhighlight> | |||
ssh-keygen -t ed25519 | |||
</syntaxhighlight>You can press enter during the prompts to use the default settings. | |||
3. Now you'll need to copy that string of text. Run this command to show it:<syntaxhighlight> | |||
cat ~/.ssh/id_ed25519.pub | |||
</syntaxhighlight>It should return a long string starting with <code>ssh-ed25519</code>, just copy that entire thing! | |||
---- | |||
Once your application has been accepted you can SSH into your new container using this command:<syntaxhighlight>ssh username@hackclub.app</syntaxhighlight>(Replace username with the username you applied with!) | Once your application has been accepted you can SSH into your new container using this command:<syntaxhighlight>ssh username@hackclub.app</syntaxhighlight>(Replace username with the username you applied with!) | ||
Latest revision as of 13:40, 27 April 2026
Before you can access your Nest container you need to apply for a container at https://dashboard.hackclub.app.
You'll be asked to pick a username, paste your public SSH key, and tell us what you'll use Nest for. If you're confused, here's how to create/find your SSH public key:
1. You might have already generated an SSH key! If you're unsure, use this command to check:
cat ~/.ssh/id_ed25519.pubIf it returns a long string starting with ssh-ed25519, then you already have one! Just copy that entire thing!
2. If that command brought back "No such file or directory" or a similar issue, it means you don't have an SSH key. You can generate one now by running this command:
ssh-keygen -t ed25519You can press enter during the prompts to use the default settings.
3. Now you'll need to copy that string of text. Run this command to show it:
cat ~/.ssh/id_ed25519.pubIt should return a long string starting with ssh-ed25519, just copy that entire thing!
Once your application has been accepted you can SSH into your new container using this command:
ssh username@hackclub.app(Replace username with the username you applied with!)
Congratulations! You're now inside your new Nest container! Now you can start hosting your projects.
You can also manage your container at https://dashboard.hackclub.app!