https://github.com/johnnyhuy/bootstrap
🚀 Bootstrap my setup!
https://github.com/johnnyhuy/bootstrap
bash linux powershell windows wsl
Last synced: 12 months ago
JSON representation
🚀 Bootstrap my setup!
- Host: GitHub
- URL: https://github.com/johnnyhuy/bootstrap
- Owner: johnnyhuy
- License: mit
- Created: 2020-04-12T21:31:53.000Z (almost 6 years ago)
- Default Branch: master
- Last Pushed: 2024-05-05T08:54:59.000Z (almost 2 years ago)
- Last Synced: 2025-04-10T09:19:14.090Z (12 months ago)
- Topics: bash, linux, powershell, windows, wsl
- Language: PowerShell
- Homepage:
- Size: 11.7 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Bootstrap
Welcome to my kick-start scripts.
Some of these repos are private 🤫.
## Getting Started
Run the following commands to get get started.
### Linux
Bootstrap with Linux! Tested on Debian so far.
```bash
# No device
curl -s https://raw.githubusercontent.com/johnnyhuy/bootstrap/master/linux.sh | /bin/bash
# My Carbon
curl -s https://raw.githubusercontent.com/johnnyhuy/bootstrap/master/linux.sh | /bin/bash -s -- --device johnny-carbon
```
### Windows
Make sure you run remote signed policies first.
```powershell
# Run remote signed policy
Set-ExecutionPolicy -ExecutionPolicy RemoteSigned -Scope LocalMachine -Force
# Run bootstrap
iex ((New-Object System.Net.WebClient).DownloadString('https://raw.githubusercontent.com/johnnyhuy/bootstrap/master/windows.ps1'))
```