Learn how to use Rust to build ATProto powered applications
1# Environment Configuration
2PORT="8080" # The port your server will listen on
3HOST="127.0.0.1" # Hostname for the server
4PUBLIC_URL="" # Set when deployed publicly, e.g. "https://mysite.com". Informs OAuth client id.
5# DB_PATH="./statusphere.sqlite3" # The SQLite database path. Leave commented out to use a temporary in-memory database.
6
7