Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/claytron/boxee-vimcasts
A Boxee app that shows Vimcasts episodes
https://github.com/claytron/boxee-vimcasts
Last synced: 3 months ago
JSON representation
A Boxee app that shows Vimcasts episodes
- Host: GitHub
- URL: https://github.com/claytron/boxee-vimcasts
- Owner: claytron
- Created: 2010-06-28T02:37:19.000Z (over 14 years ago)
- Default Branch: master
- Last Pushed: 2010-08-02T03:41:45.000Z (over 14 years ago)
- Last Synced: 2024-05-30T07:05:21.393Z (6 months ago)
- Language: Python
- Homepage:
- Size: 168 KB
- Stars: 7
- Watchers: 3
- Forks: 0
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Description
![Vimcasts Logo](http://github.com/claytron/boxee-vimcasts/raw/master/thumb.png)
This is a Boxee app that shows episodes from [vimcasts.org](http://vimcasts.org). Report any issues in the [issue tracker](http://github.com/claytron/boxee-vimcasts/issues).
This application was written entirely with the [vim](http://www.vim.org) text editor, of course!
# Development and Deployment
## Requirements and installation
- Python 2.6
- Fabric
- PyTidyLibCreate a virtualenv named `fabric` to run the commands
$ sudo easy_install virtualenv
$ mkdir ~/.virtualenvs
$ cd ~/.virtualenvs
$ virtualenv --python=python2.6 --no-site-packages fabricActivate the virtualenv
$ cd fabric
$ source bin/activateInstall the libraries needed
(fabric)$ easy_install Fabric
(fabric)$ easy_install PyTidyLibNow you can use the commands below
## Commands
Go to the root of the git clone
(fabric)$ cd path/to/boxee-vimcasts
### Development mode
Turn on "development" mode
(fabric)$ fab develop
Turn off "development" mode
(fabric)$ fab develop:off
### External Repo Release
Deploy to the third party repo
(fabric)$ fab release_external
Deploy to the third party repo ignoring any working copy changes
(fabric)$ fab release_external:ignore
### Official Release Preparation
Prepare release tarball for Boxee blessed repo
(fabric)$ fab release_offical
Prepare release tarball for Boxee blessed repo ignoring any working copy changes
(fabric)$ fab release_official:ignore