@@ -42,29 +42,27 @@ modules:
4242 ```
4343 brew install pipenv
4444 ```
45+
46+ [pipenvdocs]: https://pipenv.pypa.io/en/latest/
47+ [homebrew]: https://brew.sh/
48+ [pipenvinstall]: https://pipenv.pypa.io/en/latest/install/#installing-pipenv
49+
50+
4551### Running Scripts that Require Client Credentials
52+
4653To successfully run scripts that require client credentials, you will need to follow these steps:
47- 1. Create a `.env` file at the root of the repository by running the following command in your terminal :
54+ 1. Copy the contents of the `example.env` file in the script's directory to `.env` :
4855 ```
49- touch .env
56+ cp example.env .env
5057 ```
51- 2. Copy the contents of the `example.env` file in the script's directory to `.env`:
52- ```
53- cp path/to/script/example.env .env
54- ```
55- 3. Uncomment the variables in the `.env` file and assign values as needed. See [source.md](sources.md) on how to get credentials:
58+ 2. Uncomment the variables in the `.env` file and assign values as needed. See [`sources.md`](sources.md) on how to get credentials:
5659 ```
5760 API_KEYS=your_api_key
5861 PSE_KEY=your_pse_key
5962 ```
60- 4. Save the changes to the .env file.
61-
62- 5. You should now be able to run scripts that require client credentials without any issues.
63-
63+ 3. Save the changes to the `.env` file.
6464
65- [pipenvdocs]: https://pipenv.pypa.io/en/latest/
66- [homebrew]: https://brew.sh/
67- [pipenvinstall]: https://pipenv.pypa.io/en/latest/install/#installing-pipenv
65+ 4. You should now be able to run scripts that require client credentials without any issues.
6866
6967
7068### Tooling
@@ -83,7 +81,7 @@ To successfully run scripts that require client credentials, you will need to fo
8381
8482## Data Sources
8583
86- Kindly visit the [source .md](sources.md) file for it.
84+ Kindly visit the [sources .md](sources.md) file for it.
8785
8886
8987## History
0 commit comments