Quick Start
This guide will help you get up and running with Raisin Master quickly.
Prerequisites
Before you begin, ensure you have the following installed on your system:
Operating System: Linux (Ubuntu 20.04+ recommended)
Python: 3.8 or higher
C++ Compiler: GCC 9+ or Clang 10+
Build Tools: * CMake (3.16+) * Ninja
Version Control: Git
Installation
Clone the repository:
git clone https://github.com/your-org/raisin_master.git cd raisin_master
Install Python dependencies:
pip install -r requirements.txt
Basic Workflow
Setup the workspace:
This command scans your
src/directory, generates headers, and configures the build system.python raisin.py setup
Build the project:
Compile all packages in your workspace.
python raisin.py build --type release
Source the environment (if applicable):
After building, you may need to source the setup script to add built binaries to your path.
source install/setup.bash # (If generated)
Next Steps
Configuration - Configure your environment and tokens.
Raisin master files and folders - Understand the project structure.
Repositories & Raisin Packages - Learn how to create and manage packages.