Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/jendiamond/installfest
All the programs we need to install
https://github.com/jendiamond/installfest
Last synced: 7 days ago
JSON representation
All the programs we need to install
- Host: GitHub
- URL: https://github.com/jendiamond/installfest
- Owner: jendiamond
- Created: 2018-06-04T21:10:16.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2018-06-04T22:19:54.000Z (over 6 years ago)
- Last Synced: 2024-10-09T01:40:41.342Z (about 1 month ago)
- Size: 6.84 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# installfest
All the programs we need to install#### In the terminal
| Program | MAC | Linux | Windows |
| --- | --- | --- | ---- |
| Package Manager | x | [brew](https://docs.brew.sh/Installation) - | [apt-get]() |
| Python | x | `sudo apt install python3` | x |
| Heroku | x | `brew install heroku/brew/heroku` | `curl https://cli-assets.heroku.com/install-ubuntu.sh` | [download](https://devcenter.heroku.com/articles/heroku-cli) |
| Git | git --version | `sudo apt install git-all` | x |---
## Package Managers
### brew - Mac
$ `/usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"`
https://brew.sh/
### apt-get - Linuxhttps://www.digitalocean.com/community/tutorials/package-management-basics-apt-yum-dnf-pkg
### Windows
https://www.slant.co/topics/1843/~windows-package-managers---
## npm
https://www.npmjs.com/get-npm#### Check that you have node and npm installed
To check if you have Node.js installed, run this command in your terminal:
$ `node -v`
To confirm that you have npm installed you can run this command in your terminal:
$ `npm -v`
#### Install: https://nodejs.org
#### Docs: https://docs.npmjs.com/---
## Languages
### Python 3+ Mac
+ Linux
#### Install
$ `sudo apt install python3`### Launch the Python 3 interpreter
$ `python3`#### Exit the command line with:
$ `quit()`+ Windows
---
## Text Editor
### Sublime
Use the Flash Drive
### VIM
https://www.vim.org/download.php+ Mac
+ Linux
+ Windows---
## Version Control
### Git
+ [Mac](https://git-scm.com/book/en/v2/Getting-Started-Installing-Git)
+ Linux - $ `sudo apt install git-all`
+ [Windows](https://git-scm.com/download/win)### GitHub
What is your username and password?---
## Frameworks
### Django / Flask---
## Deploying
### Heroku Toolbelt CLI---
## Setting up Github
```bash
git remote add origin https://github.com/user/repo.git
# Set a new remote
git remote -v
# Verify new remote
origin https://github.com/user/repo.git (fetch)
origin https://github.com/user/repo.git (push)
```---