├── .gitignore
├── mix-manifest.json
├── shot.png
├── icons
├── icon.icns
├── title.png
└── title.svg
├── attendant
├── src
└── js
│ ├── components
│ ├── ListHeader.vue
│ ├── SiteListItem.vue
│ ├── SiteList.vue
│ ├── TitleBar.vue
│ ├── StatusBar.vue
│ └── SiteDetails.vue
│ ├── app.js
│ └── forge
│ └── Forge.js
├── package.json
├── readme.md
├── main.js
├── app
├── css
│ └── app.css
├── index.html
└── js
│ └── base.js
├── webpack.mix.js
└── webpack.config.js
/.gitignore:
--------------------------------------------------------------------------------
1 | node_modules
2 | *.lock
3 | *.log
4 | attendant-darwin-x64
--------------------------------------------------------------------------------
/mix-manifest.json:
--------------------------------------------------------------------------------
1 | {
2 | "/app/js/app.js": "/app/js/app.js"
3 | }
--------------------------------------------------------------------------------
/shot.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/phppirate/attendant/HEAD/shot.png
--------------------------------------------------------------------------------
/icons/icon.icns:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/phppirate/attendant/HEAD/icons/icon.icns
--------------------------------------------------------------------------------
/icons/title.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/phppirate/attendant/HEAD/icons/title.png
--------------------------------------------------------------------------------
/attendant:
--------------------------------------------------------------------------------
1 | #!/usr/bin/env bash
2 |
3 | SOURCE="${BASH_SOURCE[0]}"
4 |
5 | sudo open /Applications/Attendant.app
--------------------------------------------------------------------------------
/src/js/components/ListHeader.vue:
--------------------------------------------------------------------------------
1 |
2 |
13 | Drag your code directory to park or link a file.
14 |
2 |
3 |
8 |
9 |