https://github.com/sinsoku/rust_web
Web app for personal study
https://github.com/sinsoku/rust_web
Last synced: 4 months ago
JSON representation
Web app for personal study
- Host: GitHub
- URL: https://github.com/sinsoku/rust_web
- Owner: sinsoku
- Created: 2019-10-27T17:01:42.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2019-10-30T17:08:01.000Z (over 5 years ago)
- Last Synced: 2025-01-09T10:34:16.324Z (6 months ago)
- Language: Rust
- Homepage:
- Size: 53.7 KB
- Stars: 1
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
[](https://circleci.com/gh/sinsoku/rust_web)
# Web App with Rust
## Setup
This app uses [diesel](https://diesel.rs/), so you need to install it.
```console
$ cargo install diesel_cli --no-default-features --features sqlite
$ export DATABASE_URL=development.sqlite3
$ diesel setup
```## Run application
You can launch the app by `cargo run`.
```console
$ cargo run
```Then browsing http://localhost:8088, you see "Hello, world!"