12 Building V4
Blake Drumm edited this page 2020-12-27 19:36:31 -05:00

This example I'll be using VSCode to edit the frontend.

  1. Clone the Repository
  2. Change branch to feature/v4
  3. Install the .Net Core SDK (latest) https://dotnet.microsoft.com/download/dotnet-core
  4. Install NodeJS and Tools for Node.js Native Modules
  5. Install Yarn
  6. Set the Env variable to development $export ASPNETCORE_Environment=Development or $env:ASPNETCORE_ENVIRONMENT = "Development" in Powershell
  7. Open up a New Terminal in the following location: ~src/Ombi/ClientApp, run the following:
    1. yarn (wait for it to install all dependencies)
    2. yarn start
  8. Go to ~/src/Ombi in a Terminal Window and run dotnet run -- --host http://*:3577
  9. Navigate to http://localhost:3577/

You can now make UI changes and it will use Hot Module Reloading to show the changes.

If you are doing this on your server machine changing the environment will make your Ombi install fail to run. Be sure to change the environment back to production to re-run Ombi.