Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/dieg0code/restapi.rs
RestApi written in Rust using Rocket framework
https://github.com/dieg0code/restapi.rs
Last synced: 6 days ago
JSON representation
RestApi written in Rust using Rocket framework
- Host: GitHub
- URL: https://github.com/dieg0code/restapi.rs
- Owner: Dieg0Code
- Created: 2021-07-21T01:39:54.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2021-08-23T02:18:32.000Z (about 3 years ago)
- Last Synced: 2024-04-17T16:36:55.957Z (7 months ago)
- Language: Rust
- Size: 15.6 KB
- Stars: 0
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# RESTAPI with Rust and Rocket
ApiRest escrita en Rust usando el framework Rocket.
Rocket necesita de la version `nightly` de Rust para funcionar.
Si ya tienes instalado Rust debes ejecutar en siguiente comando para descargar la versión `nightly`
````bash
rustup toolchain install nightly
````Luego para poner como default la version `nightly`:
````bash
rustup default nigthly
````La version `nightly` de Rust es su ultima version, podría llegar a ser inestable.
Para ejecutar el proyecto:
```bash
make local_run
```Este proyecto tiene un [`Makefile`](https://hernandis.me/2017/03/20/como-hacer-un-makefile.html)
GNU make es una utilidad disponible en Linux que agiliza la tarea de compilar código desde la terminal. Nos evita tener que escribir los comandos de compilación a mano, que suelen ser muy largos, y en cambio nos permite escribir algo mucho más corto que al final hace lo mismo.
![ferris](https://i.redd.it/vp0a1tf4jc911.png)