mirror of
https://github.com/neondatabase/neon.git
synced 2026-07-05 13:10:37 +00:00
Move daemonization logic into `control_plane`. Storage binaries now only crate a lockfile to avoid concurrent services running in the same directory.
18 lines
367 B
Rust
18 lines
367 B
Rust
//
|
|
// Local control plane.
|
|
//
|
|
// Can start, configure and stop postgres instances running as a local processes.
|
|
//
|
|
// Intended to be used in integration tests and in CLI tools for
|
|
// local installations.
|
|
//
|
|
|
|
mod background_process;
|
|
pub mod compute;
|
|
pub mod connection;
|
|
pub mod etcd;
|
|
pub mod local_env;
|
|
pub mod pageserver;
|
|
pub mod postgresql_conf;
|
|
pub mod safekeeper;
|