Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/limpidcrypto/api-xrp
The LimpidCrypto API for all things XRP.
https://github.com/limpidcrypto/api-xrp
Last synced: 6 days ago
JSON representation
The LimpidCrypto API for all things XRP.
- Host: GitHub
- URL: https://github.com/limpidcrypto/api-xrp
- Owner: LimpidCrypto
- Created: 2024-01-28T09:18:36.000Z (9 months ago)
- Default Branch: main
- Last Pushed: 2024-01-28T18:24:59.000Z (9 months ago)
- Last Synced: 2024-01-28T19:32:37.516Z (9 months ago)
- Language: Rust
- Size: 22.5 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Welcome to Loco :train:
Loco is a web and API framework running on Rust.
This is the **Rest API starter** which includes a `User` model and authentication based on JWT.
## Quick Start
You need:
- A local postgres instance
- A local Redis instanceCheck out your development [configuration](config/development.yaml).
> To configure a database , please run a local postgres database with
loco:loco
and a db named[app name]_development.
:
>docker run -d -p 5432:5432 -e POSTGRES_USER=loco -e POSTGRES_DB=[app name]_development -e POSTGRES_PASSWORD="loco" postgres:15.3-alpine
Now start your app:
```
$ cargo loco start
Finished dev [unoptimized + debuginfo] target(s) in 21.63s
Running `target/debug/myapp start`:
:
:controller/app_routes.rs:203: [Middleware] Adding log trace id
▄ ▀
▀ ▄
▄ ▀ ▄ ▄ ▄▀
▄ ▀▄▄
▄ ▀ ▀ ▀▄▀█▄
▀█▄
▄▄▄▄▄▄▄ ▄▄▄▄▄▄▄▄▄ ▄▄▄▄▄▄▄▄▄▄▄ ▄▄▄▄▄▄▄▄▄ ▀▀█
██████ █████ ███ █████ ███ █████ ███ ▀█
██████ █████ ███ █████ ▀▀▀ █████ ███ ▄█▄
██████ █████ ███ █████ █████ ███ ████▄
██████ █████ ███ █████ ▄▄▄ █████ ███ █████
██████ █████ ███ ████ ███ █████ ███ ████▀
▀▀▀██▄ ▀▀▀▀▀▀▀▀▀▀ ▀▀▀▀▀▀▀▀▀▀ ▀▀▀▀▀▀▀▀▀▀ ██▀
▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀started on port 3000
```## Getting help
Check out [a quick tour](https://loco.rs/docs/getting-started/tour/) or [the complete guide](https://loco.rs/docs/getting-started/guide/).