https://github.com/sv3lte/conduit-axum-backup
Exemplary back-end realworld application (called Conduit) in Rust, built with Axum + jsonwebtoken + PostgreSQL + SQLx.
https://github.com/sv3lte/conduit-axum-backup
api async axum back-end backend conduit demo example jsonwebtoken jwt postgres postgresql realworld restful rust sqlx tokio
Last synced: 3 months ago
JSON representation
Exemplary back-end realworld application (called Conduit) in Rust, built with Axum + jsonwebtoken + PostgreSQL + SQLx.
- Host: GitHub
- URL: https://github.com/sv3lte/conduit-axum-backup
- Owner: sv3lte
- License: mit
- Created: 2024-04-09T14:16:31.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2024-05-04T02:10:22.000Z (about 1 year ago)
- Last Synced: 2024-12-27T21:30:26.237Z (5 months ago)
- Topics: api, async, axum, back-end, backend, conduit, demo, example, jsonwebtoken, jwt, postgres, postgresql, realworld, restful, rust, sqlx, tokio
- Language: Rust
- Homepage:
- Size: 109 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# ⌨️ Conduit Axum
 [](./LICENSE)      
## 💡 Introduction
Realworld: "The mother of all demo apps" — Exemplary back-end Medium.com clone (called [Conduit](https://github.com/yoonge/conduit-axum)) in Rust, built with Axum + jsonwebtoken + PostgreSQL + SQLx, it provides RESTful APIs for [Conduit React](https://github.com/yoonge/conduit-react).
## 🔰 Getting Started
```sh
$ git clone https://github.com/yoonge/conduit-axum.git$ cd conduit-axum
# Change `.env` file with your own username, password, database_name etc.
$ cp .env.example .env$ cargo install sqlx-cli
$ sqlx migrate run
$ cargo run
```## 📄 License
Conduit Axum is [MIT-licensed](./LICENSE).
----
## 🏗️ Scaffold
```sh
$ cargo init conduit-axum && cd conduit-axum
```