# Applying the changes / DONE

1. You need to connect to the server via SSH on which you have our software installed
2. Go to the folder with the project exchanger-client-web (by default)

   ```bash
   cd /var/www/exchanger-client-web/
   ```

   ! The location of the directory (exchanger-client-web) may vary depending on your server configuration.
3. *(If you have created your own branch you need to navigate to it)* use the commands:

   ```bash
    git fetch
    git checkout NAME_BRANCH
   ```

   Instead of NAME\_BRANCH, you need to specify the name of your branch.
4. Accept changes from GIT to your server using the following command

   ```bash
   git pull
   ```
5. Update / install packages:

   ```bash
   npm i
   ```
6. Assembling the project:

   ```bash
   npm run generate
   ```
