Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/dtgoitia/vagrant-ubuntu-python3
https://github.com/dtgoitia/vagrant-ubuntu-python3
Last synced: about 1 month ago
JSON representation
- Host: GitHub
- URL: https://github.com/dtgoitia/vagrant-ubuntu-python3
- Owner: dtgoitia
- Created: 2019-06-10T14:14:31.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2019-09-02T12:07:00.000Z (over 5 years ago)
- Last Synced: 2024-10-28T13:54:55.037Z (3 months ago)
- Language: Shell
- Size: 1.95 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
This repo uses a VirtualBox box.
## Usage
Assuming you have the latest version of VirtualBox and Vagrant installed:
1. Clone this repository:
```bash
git clone [email protected]:dtgoitia/vagrant-ubuntu-python3.git my-project
cd ./my-project
```
2. Install the vagrant box:
```bash
vagrant up
```
3. Provision the vagrant box:
```bash
vagrant provision
```
4. Connect to the Vagrant box:
```bash
vagrant ssh
```## Installed packages
See `./bootstrap.sh` for further detail.
## SSH
Ensure your `~/.ssh/config` file has:
```
Host abot
HostName localhost
Port 2222
User vagrantHost *
ControlMaster auto
ControlPath ~/.ssh/sockets/%r@%h-%p <-- remove this line
ControlPersist 600
ServerAliveInterval 60
ServerAliveCountMax 3
```