# Vue3 + Golang 后端 **Repository Path**: daqing/vue3-golang-backend ## Basic Information - **Project Name**: Vue3 + Golang 后端 - **Description**: B站视频课:Vue3 + Golang 后端代码 - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: main - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2025-10-09 - **Last Updated**: 2025-10-09 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README About ===== Airway is a full-stack API framework written in Go, inspired by Ruby on Rails. **[查看中文文档](https://github.com/daqing/airway/blob/main/docs/zh-CN/README.md)** Get Started =========== ## 1. Setup project skeleton Use `gonew` to create a new project based on `airway`: ```bash $ gonew github.com/daqing/airway example.com/foo/bar ``` Replace `example.com/foo/bar` with your real module name. ## 2. Configure local development environment ### Create `.env` file ```bash $ cp .env.example .env ``` This file defines a few environment variables: **AIRWAY_PG** The URL string for connecting to PostgreSQL. Example: `postgres://daqing@localhost:5432/airway` **AIRWAY_PORT** The port to listen on. Example: `1900` **TZ** The timezone of the server Example: `Asia/Shanghai` ## 3. Start local development server Run `just` from the project root directory to start the local development server.