invidious/README.md

60 lines
1.1 KiB
Markdown
Raw Normal View History

2017-11-30 05:42:23 +05:30
# Invidious
2017-11-23 13:18:55 +05:30
2018-01-29 08:01:35 +05:30
> Invidious is a web application that indexes popular video sites
2017-11-23 13:18:55 +05:30
## Installation
2018-01-29 08:01:35 +05:30
### Installing [Crystal](https://github.com/crystal-lang/crystal):
On Arch:
```bash
$ sudo pacman -Syu shards crystal
$ crystal deps
```
On OSX:
```bash
$ brew update
$ brew install shards crystal-lang
$ crystal deps
```
### Installing Postgres:
2018-01-29 08:28:41 +05:30
On Arch:
Install according to the [wiki](https://wiki.archlinux.org/index.php/PostgreSQL#Installing_PostgreSQL):
2018-01-29 08:01:35 +05:30
On OSX:
```bash
$ brew install postgres
```
2018-01-29 08:28:41 +05:30
Then setup database with:
```bash
$ ./setup.sh
```
2018-01-29 08:01:35 +05:30
## Usage:
2017-11-23 13:22:37 +05:30
```bash
2018-01-29 08:01:35 +05:30
$ crystal src/invidious.cr
2017-11-23 13:22:37 +05:30
```
2017-11-23 13:18:55 +05:30
2018-01-29 08:01:35 +05:30
Or for development:
2017-11-23 13:22:37 +05:30
```bash
2018-01-29 08:01:35 +05:30
$ curl -fsSLo- https://raw.githubusercontent.com/samueleaton/sentry/master/install.cr | crystal eval
$ ./sentry
2017-11-23 13:22:37 +05:30
```
2017-11-23 13:18:55 +05:30
## Contributing
2018-02-07 06:22:22 +05:30
1. Fork it ( https://github.com/omarroth/invidious/fork )
2017-11-23 13:18:55 +05:30
2. Create your feature branch (git checkout -b my-new-feature)
3. Commit your changes (git commit -am 'Add some feature')
4. Push to the branch (git push origin my-new-feature)
5. Create a new Pull Request
## Contributors
2017-11-23 13:22:37 +05:30
- [omarroth](https://github.com/omarroth) - creator, maintainer