Removed dollar signs in front of bash commands

This commit is contained in:
J-onasJones 2024-01-03 00:56:18 +01:00
parent 5aefb1a7c7
commit 169be592ab

View file

@ -9,16 +9,16 @@ As of now, the project has no proper production build and unless the proper envi
Clone the repository and install the dependencies. Clone the repository and install the dependencies.
```bash ```bash
$ git clone git@github.com:J-onasJones/jonas_jones-api.git git clone git@github.com:J-onasJones/jonas_jones-api.git
$ cd jonas_jones-api cd jonas_jones-api
$ cargo build cargo build
``` ```
## Usage ## Usage
To run the API, simply run the following command. To run the API, simply run the following command.
```bash ```bash
$ cargo run cargo run
``` ```
If you want to run the API in a production environment, you will need to set the following environment variables. If you want to run the API in a production environment, you will need to set the following environment variables.
@ -29,8 +29,8 @@ If you want to run the API in a production environment, you will need to set the
- LASTFM_API_SECRET - LASTFM_API_SECRET
```bash ```bash
$ export API_PORT={port} export API_PORT={port}
$ export API_IP={ip_address} export API_IP={ip_address}
$ export LASTFM_API_KEY={lastfm_api_key} export LASTFM_API_KEY={lastfm_api_key}
$ export LASTFM_API_SECRET={lastfm_api_secret} export LASTFM_API_SECRET={lastfm_api_secret}
``` ```