Skip to content
This repository has been archived by the owner on Dec 8, 2020. It is now read-only.

Latest commit

 

History

History
42 lines (27 loc) · 1.11 KB

README.md

File metadata and controls

42 lines (27 loc) · 1.11 KB

beep-beep-server

This is an experimental implementation of a p2p server based on the proof-of-concept introduced with beep-beep. It should serve as a playground to play with more concrete implementation details. 🥽 🥼

Requirements

Setup

  1. Make sure you have the above mentioned requirements up and running.

  2. Create postgres database:

$ createdb beep-beep-development
  1. Run database migration in db folder:
$ cd db
$ diesel migration run --database-url=postgres://postgres:postgres@localhost/beep-beep-development

Usage

// Run the server on default port 8000
RUST_LOG=info cargo run -- --postgres-url=postgres://postgres:postgres@localhost/beep-beep-development

Further links

License

GNU Affero General Public License v3.0 AGPL-3.0