If you have a Linux machine with KVM on it, you can manage those VMs remotely from a Mac using virt-manager.
SSH to the Linux machine and add your SSH user to the libvirt group
sudo usermod -a -G libvirt $(whoami)
| App.js | |
| import React, { Component } from 'react'; | |
| import TaskList from './TaskList'; | |
| import AddTask from './AddTask'; | |
| export default class App extends Component { | |
| render() { | |
| return ( | |
| <div> |
| class CreateResidences < ActiveRecord::Migration | |
| def change | |
| create_table :residences do |t| | |
| t.string :name | |
| t.string :address | |
| t.belongs_to :zipcode, index: true | |
| t.timestamps null: false | |
| end | |
| add_foreign_key :residences, :zipcodes |