From 169be592ab636456b0e0168a534d5d49585e4ec2 Mon Sep 17 00:00:00 2001 From: J-onasJones Date: Wed, 3 Jan 2024 00:56:18 +0100 Subject: [PATCH] Removed dollar signs in front of bash commands --- README.md | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/README.md b/README.md index 4e2f4ca..5cbba9f 100644 --- a/README.md +++ b/README.md @@ -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} ```