An open API service indexing awesome lists of open source software.

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!

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'))
```