root
- This is seen as your root
directory, also known as /
or ./
config
- This is your configuration file, mainly called application.yml
located in the src
directory
The configuration file can be located atsrc/_application.yml
, you should rename this file to application.yml
by using the following command inside of your project's root directory: mv src/_application.yml src/application.yml
rename.sh#!/bin/bash# Linux / Macmv src/_application.yml src/application.yml# Windowsren ./src/_application.yml ./src/application.yml