The Social-Media Management is a console-based application designed to simulate the basic functionalities of popular social-media platforms. The primary goal of the program is to allow users to:
- Create and manage posts
- View posts from other users
- Manage user data
A file management system is used to save and control information throughout the program, ensuring data persistence and easy access.
Prerequisites
CMake >= 3.10
C++ compiler (e.g. MSVC, g++, clang)
Build Steps
git clone https://github.com/azmbzrbv/Minisocial.git
cd minisocial
# Create build directory
mkdir build
cd build
# Generate build files with CMake
cmake ..
# Build the project
cmake --build .
Run the App
On Windows: ./Debug/Minisocial.exe
On Linux/macOS: ./Minisocial
The program starts from src/MediaMain.cpp where the main() function is defined.
For more detailed information, please refer to the Documentation.pdf.