https://www.wenyanet.com/opensource/ko/603e9447a7f61408ee3b9168.html

 

많은 기능을 구현하는 Actix 2.x REST 애플리케이션의 예 - wenyanet

Rust / Actix 예제 Rust 언어를 사용하는 Actix 2.0 REST 서버. 자극 Actix Web은 Rust에서 웹 애플리케이션을 구축하기위한 빠르고 강력한 웹 프레임 워크입니다. 이 프로젝트는 Actix의 성능 이점을 유지하면

www.wenyanet.com

https://actix.rs/

 

Actix Web | A powerful, pragmatic, and extremely fast web framework for Rust.

Request Routing The built-in Actix Web request router can be used with or without macros attached to handlers, and always provides flexible and composable methods of creating routing tables. Includes support for matching dynamic path segments, path prefix

actix.rs

 

'Programming > Rust' 카테고리의 다른 글

Rust 설치  (0) 2022.03.05

curl https://sh.rustup.rs -sSf | sh

source ~/.cargo/env
rustc --version

'Programming > Rust' 카테고리의 다른 글

rust actix example  (0) 2022.03.07

 

## RAM 구분

 2G : D9WHZ
 4G : D9WHV
 8G : D9ZCL

 

## ubuntu Server 20.04.4 LTS ( 64bit OS )

https://ubuntu.com/download/raspberry-pi 

 

Install Ubuntu on a Raspberry Pi | Ubuntu

Ubuntu is an open-source operating system for cross platform development, there's no better place to get started than with Ubuntu on a Raspberry Pi.

ubuntu.com

 

## 라즈베리안 ( 64bit OS )

 https://downloads.raspberrypi.org/raspios_lite_arm64/images/
 https://downloads.raspberrypi.org/raspios_arm64/images/
 안정화 버전 : 2022년 01월 28일 버전

 

## 기본 계정 및 암호

 라즈베리안 : pi / raspberry
 ubuntu : ubuntu / ubuntu 

 

## exFAT 인식 시키기

 sudo apt-get install exfat-fuse
 sudo apt-get install exfat-utils

 

## Go 언어 설치 ( 라즈베리안 64bit )

 wget https://golang.org/dl/go1.17.3.linux-arm64.tar.gz
 tar -C /usr/local -xzf go1.17.3.linux-arm64.tar.gz


 vi ~/.bashrc
 export PATH=$PATH:/usr/local/go/bin

 

## ArozOS 설치

https://github.com/tobychui/arozos

 

- 수동 build

 git clone https://github.com/tobychui/arozos.git
 cd ./arozos/src
 go build
 ./arozos

 

- 자동 설치

 wget https://raw.githubusercontent.com/tobychui/arozos/master/installer/install_for_pi.sh
 sudo chmod 775 ./install_for_pi.sh
 ./install_for_pi.sh

 

 

 

+ Recent posts