File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 11# π FreshLogger - Enterprise-Grade C++ Logging Library
22
3+ [ ![ CI/CD Pipeline] ( https://github.com/omerrbbulut/FreshLogger/workflows/FreshLogger%20CI%2FCD%20Pipeline/badge.svg )] ( https://github.com/omerrbbulut/FreshLogger/actions )
4+ [ ![ Version] ( https://img.shields.io/badge/version-1.3.0-blue.svg )] ( https://github.com/omerrbbulut/FreshLogger/releases )
5+ [ ![ License] ( https://img.shields.io/badge/license-MIT-green.svg )] ( LICENSE )
6+ [ ![ C++] ( https://img.shields.io/badge/C%2B%2B-17-blue.svg )] ( https://isocpp.org/ )
7+ [ ![ Platform] ( https://img.shields.io/badge/platform-Linux%20%7C%20macOS-blue.svg )] ( https://github.com/omerrbbulut/FreshLogger )
8+ [ ![ Tests] ( https://img.shields.io/badge/tests-100%25%20passing-brightgreen.svg )] ( https://github.com/omerrbbulut/FreshLogger/actions )
9+
310A high-performance, feature-rich C++ logging library with comprehensive CI/CD pipeline and enterprise-grade testing.
411
512## β¨ Features
@@ -36,6 +43,34 @@ A high-performance, feature-rich C++ logging library with comprehensive CI/CD pi
3643- π ** Integration Tests** : Real-world scenario testing
3744- π ** Load Testing** : High concurrency testing
3845
46+ ## β‘ Quick Start
47+
48+ ### π One-Liner Installation
49+ ``` bash
50+ # Clone and run in one command
51+ git clone https://github.com/omerrbbulut/FreshLogger.git && cd FreshLogger && make all && make enterprise-test
52+ ```
53+
54+ ### π¦ Docker Support (Coming Soon)
55+ ``` bash
56+ # Docker image will be available soon
57+ docker pull omerrbbulut/freshlogger:latest
58+ ```
59+
60+ ### π― Live Demo
61+ ``` cpp
62+ #include " Logger.hpp"
63+
64+ int main () {
65+ Logger logger;
66+ logger.info("π FreshLogger is running!");
67+ logger.debug("Debug mode enabled");
68+ logger.warning("This is a warning");
69+ logger.error("This is an error");
70+ return 0;
71+ }
72+ ```
73+
3974## π¦ Installation
4075
4176### Prerequisites
You canβt perform that action at this time.
0 commit comments