lemmy/README.md

47 lines
1.2 KiB
Markdown
Raw Normal View History

# Lemmy
2019-02-14 10:36:53 -07:00
2019-04-06 09:32:34 -06:00
[![Build Status](https://travis-ci.org/dessalines/lemmy.svg?branch=master)](https://travis-ci.org/dessalines/lemmy)
2019-04-06 11:19:05 -06:00
A link aggregator / reddit clone for the fediverse.
2019-02-14 10:36:53 -07:00
2019-04-06 11:19:05 -06:00
Made with [Rust](https://www.rust-lang.org), [Actix](https://actix.rs/), [Inferno](https://www.infernojs.org), [Typescript](https://www.typescriptlang.org/).
2019-02-14 18:42:04 -07:00
2019-04-06 11:19:05 -06:00
## Navigation
- [Matrix Chatroom](https://riot.im/app/#/room/#rust-reddit-fediverse:matrix.org)
- [Issues / Feature Requests](https://github.com/dessalines/lemmy/issues)
- Support the development via Patreon
2019-02-15 11:27:37 -07:00
2019-04-06 11:19:05 -06:00
## Features
- TBD
## Install
### Docker
2019-03-30 00:08:02 -06:00
```
2019-04-06 11:19:05 -06:00
git clone https://github.com/dessalines/lemmy
cd lemmy
docker-compose up
2019-03-30 00:08:02 -06:00
```
2019-04-06 11:19:05 -06:00
and goto http://localhost:8080
### Local Development
#### Requirements
- [Rust](https://www.rust-lang.org/)
- [Yarn](https://yarnpkg.com/en/)
- [Postgres](https://www.sqlite.org/index.html)
#### Set up Postgres DB
```
psql -c "create user rrr with password 'rrr' superuser;" -U postgres
psql -c 'create database rrr with owner rrr;' -U postgres
```
#### Running
```
git clone https://github.com/dessalines/lemmy
cd lemmy
./install.sh
```
and goto http://localhost:8080
2019-03-30 00:08:02 -06:00
2019-04-06 11:19:05 -06:00
## Documentation
- [ActivityPub API.md](API.md)
- [Goals](goals.md)
- [Ranking Algorithm](ranking.md)