Skip to content

Small containerization utility, made as uni project

Notifications You must be signed in to change notification settings

VoidZeroNull0/dasboot

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

89 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Coverage Status

Dasboot

A small containerization utility, written in C/C++. Made as team pet project.

Dependencies

Make sure to have these installed:

  • Clang - compiler
  • CMake - generates build files
  • Ninja - builds
sudo apt update && \
sudo apt install -y clang cmake ninja-build

All other dependencies will be fetched during CMake run.

Clone the repo

Get the project:

git clone https://github.com/KittensBasket/dasboot.git && \
cd dasboot

Build the project

Run CMake and then build with Ninja:

mkdir build && \
cd build && \
cmake .. -G Ninja && \
ninja

Tests

Run

ctest

to check all modules or for individual module tests - there is an executable file inside its directory ending with _ut.

About

Small containerization utility, made as uni project

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • C++ 93.2%
  • CMake 6.8%