Prerequisites & References
These are some things you should do when you're using Wump, these are the required things to do
References
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
Prerequisites
Rename your config
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
#!/bin/bash
# Linux / Mac
mv src/_application.yml src/application.yml
# Windows
ren ./src/_application.yml ./src/application.ymlLast updated