https://github.com/zource-dev/setup
Scripts for quick setup development environment
https://github.com/zource-dev/setup
Last synced: 9 months ago
JSON representation
Scripts for quick setup development environment
- Host: GitHub
- URL: https://github.com/zource-dev/setup
- Owner: zource-dev
- Created: 2020-05-23T16:06:14.000Z (almost 6 years ago)
- Default Branch: master
- Last Pushed: 2020-05-23T16:15:23.000Z (almost 6 years ago)
- Last Synced: 2025-05-20T17:50:41.459Z (11 months ago)
- Language: Shell
- Size: 4.88 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# ZOURCE.DEV Setup Environment Scripts
The following apps will be installed:
- Git
- VSCode
- SublimeText 3
- Chromium Dev Build
- Docker
- Postman
- Figma
## Windows 10
Sets up WSL 2 with Ubuntu 18.04 and installs required apps
```powershell
(New-Object System.Net.WebClient).DownloadFile('https://zource.dev/setup/windows.ps1', "$env:temp\setup.ps1"); Set-ExecutionPolicy Bypass -Scope Process -Force; powershell "$env:temp\setup.ps1"
```
## Mac OS
Installs required apps
```bash
curl -o- https://zource.dev/setup/macos.sh | bash
```
## Ubuntu
Installs required apps
```bash
curl -o- https://zource.dev/setup/ubuntu.sh | bash
```