https://github.com/mnutt/limecast
A directory of video podcasts
https://github.com/mnutt/limecast
Last synced: over 1 year ago
JSON representation
A directory of video podcasts
- Host: GitHub
- URL: https://github.com/mnutt/limecast
- Owner: mnutt
- Created: 2008-06-26T21:29:02.000Z (almost 18 years ago)
- Default Branch: master
- Last Pushed: 2019-01-05T17:16:25.000Z (over 7 years ago)
- Last Synced: 2025-01-09T23:53:55.962Z (over 1 year ago)
- Language: HTML
- Homepage: http://limecast.com
- Size: 26.4 MB
- Stars: 12
- Watchers: 8
- Forks: 6
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# LimeCast
The web's open podcast directory and archive
*Note: This service and code are both deprecated and are here for historical purposes. Rails 2 is missing many, many security fixes and is not safe to run in production. You have been warned.*

## Prerequisites
* Docker
## Installation
Build the container:
```bash
docker build -t limecast .
```
Set up the database:
```bash
docker run --rm -it -v $(pwd)/db/data/:/db limecast rbenv exec rake db:create:all
docker run --rm -it -v $(pwd)/db/data/:/db limecast rbenv exec rake db:schema:load
```
## Usage
```bash
docker run --init --rm -it -v $(pwd)/db/data/:/db -p 3000:3000 limecast
```
If you want to serve on a different port, change the first `3000` to something else.