oxen-server 0.53.0

Oxen server is a fast data version control backend, supporting local disk and S3. Self host your repositories on your own storage, or use the hosted platform on Oxen.ai. Stores, syncs, and serves versioned datasets, model checkpoints, game assets, studio media, and any large data. Use the oxen CLI to push and pull from the oxen server.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
//! The Oxen server's implementation. The `oxen-server` binary is a thin shell over this crate.

pub mod app_data;
pub mod auth;
pub mod config;
pub mod controllers;
pub mod crash_diagnostics;
pub mod errors;
pub mod helpers;
pub mod metrics;
pub mod middleware;
pub mod params;
pub mod routes;
pub mod services;
pub mod tasks;
#[cfg(test)]
pub(crate) mod test;