Add README.md

This commit is contained in:
Drew DeVault 2017-08-24 23:10:37 -04:00
parent a3391a667e
commit 10f63828b4
2 changed files with 20 additions and 1 deletions

19
README.md Normal file
View File

@ -0,0 +1,19 @@
# receptor
WIP web frontend for [synapse](https://github.com/Luminarys/synapse).
[![](https://sr.ht/TkmY.png)](https://sr.ht/TkmY.png)
I really mean it when I say "WIP" here. There's only a few people that I want
bug reports from right now and they know who they are.
## Usage
Run synapse on localhost with the default RPC port.
```shell
$ npm install
$ npm start
```
Go to http://localhost:3000

View File

@ -15,7 +15,7 @@ export default class Main extends Component {
<div className="col-md-4"> <div className="col-md-4">
<Route path="/add-torrent" component={AddTorrent} /> <Route path="/add-torrent" component={AddTorrent} />
<Route path="/torrents/:ids" component={TorrentDetails} /> <Route path="/torrents/:ids" component={TorrentDetails} />
<Route path="/" component={Server} /> <Route exact path="/" component={Server} />
</div> </div>
</div> </div>
); );