Makefile Guide for Go Projects

Makefile Guide for Go Projects

This article is a Makefile guide for Go projects. Hello everyone, my name is Xie Wei, and I am a backend developer using the Go language. The theme of this article is: Writing a Makefile guide suitable for Go projects. 1. Prerequisites: Familiarity with Makefile Experience in writing projects in Go During the project development … Read more

Makefile Guide for Go Projects

Makefile Guide for Go Projects

This article is a Makefile guide for Go projects. Hello everyone, my name is Xie Wei, and I am a backend developer using the Go language. The theme of this article is: Writing a Makefile guide suitable for Go projects. 1. Prerequisites: Familiarity with Makefile Experience in writing projects in Go During the project development … Read more

Full Stack Development with Python: Building Cloud-Native Applications with FastAPI and Docker

Full Stack Development with Python: Building Cloud-Native Applications with FastAPI and Docker

1. Practical Steps for Full Stack Development with FastAPI and Docker 1. Project Initialization and Basic Configuration of FastAPI # main.py from fastapi import FastAPI from pydantic import BaseModel app = FastAPI(title="Cloud-Native API Service") # Automatically generate Swagger documentation class Item(BaseModel): name: str price: float @app.post("/items/") async def create_item(item: Item): """Asynchronously handle POST requests with … Read more

Installing and Deploying GitLab Community Edition on Linux

Installing and Deploying GitLab Community Edition on Linux

Introduction to GitLab: A very popular open-source project that supports self-hosting and provides a rich feature set, including CI/CD. The GitLab Community Edition is open-source and free, allowing users to download and install it on their local servers. Official Website: https://packages.gitlab.com/gitlab/gitlab-ce GitLab Download Links: https://mirrors.tuna.tsinghua.edu.cn/gitlab-ce/yum/el9/ https://packages.gitlab.com/gitlab/gitlab-ce/packages/el/9/gitlab-ce-17.7.2-ce.0.el9.x86_64.rpm/download.rpm Upload the installation package gitlab-ce-17.7.2-ce.0.el9.x86_64.rpm to the server in … Read more

Writing Makefiles for Python Projects

Writing Makefiles for Python Projects

As a fan of Makefiles, I use them in almost every hobby project. I also advocate for their use in work projects. For open source projects, Makefiles inform code contributors on how to build, test, and deploy the project. Moreover, if you use Makefiles correctly, they can greatly simplify your CI/CD process scripts, as you … Read more

Building Cloud-Native Software-Defined Vehicles on AWS with SOAFEE

Building Cloud-Native Software-Defined Vehicles on AWS with SOAFEE

Click the entrance above to immediately [Build Freely, Explore Limitlessly] Join us for the annual technology feast! Introduction With the accelerated development of intelligence and connectivity in the automotive industry, automotive software represented by intelligent cockpits, assisted driving, autonomous driving, and vehicle networking is constantly innovating. Traditional distributed electronic and electrical architectures centered around ECUs … Read more