Quickstart: Difference between revisions
More actions
Undo revision 29 by U082GTRTR5X (talk) |
mNo edit summary |
||
| (One intermediate revision by the same user not shown) | |||
| Line 3: | Line 3: | ||
You'll be asked to pick a username, paste your public SSH key, and tell us what you'll use Nest for. Nest exclusively use SSH keys instead of passwords since they're easier and more secure. | You'll be asked to pick a username, paste your public SSH key, and tell us what you'll use Nest for. Nest exclusively use SSH keys instead of passwords since they're easier and more secure. | ||
----If you're confused, here's how to create/find your SSH public key: | ----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: | |||
Linux/MacOS:<syntaxhighlight>cat ~/.ssh/id_ed25519.pub</syntaxhighlight>Windows:<syntaxhighlight>type %userprofile%\.ssh\id_ed25519.pub</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> | 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> | ||
| Line 15: | Line 14: | ||
</syntaxhighlight>You can press enter during the prompts to use the default settings. | </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: | |||
Linux/MacOS:<syntaxhighlight> | |||
cat ~/.ssh/id_ed25519.pub | |||
</syntaxhighlight>Windows:<syntaxhighlight>type %userprofile%\.ssh\id_ed25519.pub</syntaxhighlight> | |||
It should return a long string starting with <code>ssh-ed25519</code>, just copy that entire thing! | |||
---- | ---- | ||
Once submitted, your application might take up to 72 hours for an admin to review, approve, or reject your application. | Once submitted, your application might take up to 72 hours for an admin to review, approve, or reject your application. | ||
Once your application has been accepted you can SSH into your new container using this command: (replace username)<syntaxhighlight>ssh username@hackclub.app</syntaxhighlight> | |||
Congratulations! You're now inside your new Nest container! Now you can start hosting your projects. | 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! | You can also manage your container at https://dashboard.hackclub.app! | ||
Latest revision as of 17:36, 12 May 2026
Before you can access your Nest container, you'll need to apply for a container at https://dashboard.hackclub.app. If you haven't already, you will be asked to verify your age through Hack Club Auth. Age verification is not done by Nest.
You'll be asked to pick a username, paste your public SSH key, and tell us what you'll use Nest for. Nest exclusively use SSH keys instead of passwords since they're easier and more secure.
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:
Linux/MacOS:
cat ~/.ssh/id_ed25519.pubWindows:
type %userprofile%\.ssh\id_ed25519.pub
If 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:
Linux/MacOS:
cat ~/.ssh/id_ed25519.pubWindows:
type %userprofile%\.ssh\id_ed25519.pub
It should return a long string starting with ssh-ed25519, just copy that entire thing!
Once submitted, your application might take up to 72 hours for an admin to review, approve, or reject your application.
Once your application has been accepted you can SSH into your new container using this command: (replace username)
ssh username@hackclub.app
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!