> For the complete documentation index, see [llms.txt](https://wessel.gitbook.io/yorushika/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://wessel.gitbook.io/yorushika/configuration/prerequisites.md).

# 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

## &#x20;Prerequisites

### Rename your config

The configuration file can be located at`src/_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`

{% code title="rename.sh" %}

```bash
#!/bin/bash

# Linux / Mac
mv src/_application.yml src/application.yml

# Windows
ren ./src/_application.yml ./src/application.yml
```

{% endcode %}
