https://github.com/neoito-hub/wasp
Set of scripts / tools that adds a bit of flavour to dev work.
https://github.com/neoito-hub/wasp
bash linux shellscript ubuntu
Last synced: 27 days ago
JSON representation
Set of scripts / tools that adds a bit of flavour to dev work.
- Host: GitHub
- URL: https://github.com/neoito-hub/wasp
- Owner: neoito-hub
- License: mit
- Created: 2017-10-20T08:28:16.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2022-11-23T11:07:27.000Z (over 3 years ago)
- Last Synced: 2025-03-02T18:33:42.491Z (over 1 year ago)
- Topics: bash, linux, shellscript, ubuntu
- Language: Shell
- Size: 20.5 KB
- Stars: 2
- Watchers: 3
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# W.A.S.P - Web App Starter Pack
This repo is the home for a set of comfy scripts, tools and whatever that would aid in smooth dev life.
- :dog: `sh.sh` - **Setup Hound** is a small bash script that installs a few utilities on to a freshly installed Ubuntu system to set it up for dev work. [ :bomb: `HIGHLY BETA`]
- :fire: `ni.sh` - **Nativescript Installer** installs nativescript for Android development on Ubuntu.
- :fire: `pinit.sh` - **Project Initializer** sets up a project folder with needed configs.
- :anger: `iiu.sh` - **Is It Up** checks if a list of sites are up or not. Invoke as `$ ./iiu.sh file.list`
# Installation
- Create `$HOME/bin`
- Copy the scripts there or symlink them. example: `ln -s $HOME/Downloads/wasp/ni.sh $HOME/bin/ni.sh`
- Make them executable `chmod +x *.sh`
- Open your shell's rc file. For bash that would be `$HOME/.bashrc` and add these lines to the end
```
export PATH="$PATH:$HOME/bin"
```