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.
```bash
$ git clone git@github.com:J-onasJones/jonas_jones-api.git
$ cd jonas_jones-api
$ cargo build
git clone git@github.com:J-onasJones/jonas_jones-api.git
cd jonas_jones-api
cargo build
```
## Usage
To run the API, simply run the following command.
```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.
@ -29,8 +29,8 @@ If you want to run the API in a production environment, you will need to set the
- LASTFM_API_SECRET
```bash
$ export API_PORT={port}
$ export API_IP={ip_address}
$ export LASTFM_API_KEY={lastfm_api_key}
$ export LASTFM_API_SECRET={lastfm_api_secret}
export API_PORT={port}
export API_IP={ip_address}
export LASTFM_API_KEY={lastfm_api_key}
export LASTFM_API_SECRET={lastfm_api_secret}
```