Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/swift-server/guides
Guides for building, debugging and deploying Swift Server applications
https://github.com/swift-server/guides
Last synced: 13 days ago
JSON representation
Guides for building, debugging and deploying Swift Server applications
- Host: GitHub
- URL: https://github.com/swift-server/guides
- Owner: swift-server
- Archived: true
- Created: 2020-02-12T18:37:14.000Z (almost 5 years ago)
- Default Branch: main
- Last Pushed: 2022-08-05T07:43:37.000Z (over 2 years ago)
- Last Synced: 2024-08-01T19:58:42.624Z (3 months ago)
- Homepage:
- Size: 5.94 MB
- Stars: 258
- Watchers: 35
- Forks: 21
- Open Issues: 29
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
> **Warning**
> The guides are now part of Swift.org and will continue to be evolved there. This repo is now archived# Swift on Server Development Guide
## Introduction
This guide is designed to help teams and individuals running Swift Server applications on Linux and to provide orientation for those who want to start with such development.
It focuses on how to build, test, deploy and debug such application and provides tips in those areas.## Contents
- [Setup and code editing](docs/setup-and-ide-alternatives.md)
- [Building](docs/building.md)
- [Testing](docs/testing.md)
- [Debugging Memory leaks](docs/memory-leaks-and-usage.md)
- [Performance troubleshooting and analysis](docs/performance.md)
- [Debugging multithreading issues and memory checks](docs/llvm-sanitizers.md)
- [Deployment](docs/deployment.md)### Server-side library development
Server-side libraries should, to the best of their ability, play well with established patterns in the SSWG library ecosystem.
They should also utilize the core observability libraries, such as: logging, metrics and distributed tracing, where applicable.The below guidelines are aimed to help library developers with some of the typical questions and challenges they might face when designing server-side focused libraries with Swift:
- [SwiftLog: Log level guidelines](docs/libs/log-levels.md)
- [Swift Concurrency Adoption Guidelines](docs/concurrency-adoption-guidelines.md)_The guide is a community effort, and all are invited to share their tips and know-how. Please provide a PR if you have ideas for improving this guide!_