<?xml version="1.0" encoding="utf-8" standalone="yes"?><rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom"><channel><title>Development on INFINI Framework</title><link>/framework/v1.3.0/docs/development/</link><description>Recent content in Development on INFINI Framework</description><generator>Hugo -- gohugo.io</generator><atom:link href="/framework/v1.3.0/docs/development/index.xml" rel="self" type="application/rss+xml"/><item><title>Setting Up the Golang Environment</title><link>/framework/v1.3.0/docs/development/setup_golang_environment/</link><pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate><guid>/framework/v1.3.0/docs/development/setup_golang_environment/</guid><description>Setting Up the Golang Environment # Refer the official guide to install Golang: https://go.dev/doc/install
Golang Version # Verify your Go version:
➜ loadgen git:(master) ✗ go version go version go1.23.3 darwin/arm64 Directory Setup # Create the necessary directory structure:
cd ~/go/src/ mkdir -p infini.sh/ Note: The code must be located under your personal directory at ~/go/src/infini.sh.
Other locations are not allowed—this is a strict requirement.
Cloning Dependencies # Clone the required dependency repositories:</description></item><item><title>Setup IntelliJ IDEA</title><link>/framework/v1.3.0/docs/development/setup_intellij_idea/</link><pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate><guid>/framework/v1.3.0/docs/development/setup_intellij_idea/</guid><description>Setup IntelliJ IDEA # This guide provides step-by-step instructions to configure IntelliJ IDEA for Go development, ensuring optimal compatibility with project requirements.
Configure GOPATH # Set the GOPATH for your project in IntelliJ IDEA:
Navigate to: Preferences | Languages &amp;amp; Frameworks | Go | GOPATH
Adjust Run/Debug Configurations # For projects that rely on legacy dependency management (e.g., the vendor folder), configure the necessary environment variables:</description></item><item><title>Create New Application</title><link>/framework/v1.3.0/docs/development/create_new_application/</link><pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate><guid>/framework/v1.3.0/docs/development/create_new_application/</guid><description>Create New Application # Let&amp;rsquo;s use the NewAPP as the new project for example.
Create the project folder # Use the name new_app as the project id, and create the project folder as below:
cd ~/go/src/infini.sh/ mkdir new_app Note: Ensure that new_app is located in the same directory as the framework folder. This structure is required for the Makefile to function correctly.
Create the main file # Create a empty main.</description></item></channel></rss>