Skip to content

A utility to forward foreign requests to a local server.

License

Notifications You must be signed in to change notification settings

lostcode-io/charon

Repository files navigation

Rust license

charon

A utility to forward foreign requests to a local server.

Usage

Install cargo and rustc from here. Both server and client can be ran with -d option to debug the request data.

Server

Server is required to be running in the web. Multiple clients can use one server at a time. Server is responsible for forwarding requests to clients using sockets.

To run server, use the following command:

cargo run --release -- server -p PORT

where PORT is the port number on which server will listen for incoming requests.

Client

Client is the part running locally on the user machine and forwarding messages from the server to the locally ran application.

To run client, use the following command:

cargo run --release -- client -p PORT -s SERVER_IP:PORT -t TOKEN

where PORT is the port number on which client will listen for incoming requests, SERVER_IP:PORT is the IP address and port number of the server, and TOKEN is the token to authenticate the client with the server.

Database

Server uses Postgres database to store tokens and arrdesses of clients. To setup the database.

To setup the database, follow these steps:

  1. Install Postgres from here.
  2. Create a user called charon in the psql datapase:
echo "CREATE USER charon" | psql
  1. Create a database called charon in the psql database:
echo "CREATE DATABASE charon WITH OWNER charon" | psql
  1. Run the migrations to create the tables:
make migrate
  1. For testing purposes, you can add a token to the database:
make fixtures

That will add a token foo, with address some_kind_of_an_address to the database. Altho for production, you should add proper tokens and adresses from outside charon.

Now you can run the server and client as described above.

About

A utility to forward foreign requests to a local server.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published