Skip to content

Setup for development

Hachard Victor edited this page Dec 12, 2022 · 1 revision

Initial setup

  1. Fork the project to create your own copy of the codebase.

  2. Clone the forked project to your local machine using a Git client.

git clone https://github.com/[your_username]/[project_name].git
  1. Create a new configuration file, such as setting.json, and add the following content to it:
{
    "email_username": "gmail_sender@gmail.com",
    "email_password": "aaaa bbbb cccc dddd",
    "alias": {
        "you_email": "you_email@example.com"
    }
}
  1. Open the project in your preferred code editor.

For Intellij

Add a new configuration in the code editor with the following CLI arguements:

  • -run dev
  • -file <path_to_config_file> with the actual path on your local machine

image

Run the application.

Clone this wiki locally