Development Setup

The development workflow is still being worked on, but this page covers the current state of the world.

You will see pip install -e . frequently in the documentation. Please see the pip documentation for an explanation on what this does.

Note

All current development versions of LedFx now require Python >=3.8


Backend Development

Windows

  • Install Python 3.8 or above.

  • Install Git.

  • Using “Build Tools for Visual Studio 2019” installer:

    • Default install options are appropriate.

  • Reboot

$ python -m venv C:\ledfx
$ cd C:\ledfx
$ .\Scripts\activate.bat
$ pip install wheel
$ pip install pywin32
$ python .\Scripts\pywin32_postinstall.py -install
$ git clone -b frontend_beta https://github.com/LedFx/LedFx .\ledfx-git
$ cd .\ledfx-git
$ python setup.py develop
$ ledfx --open-ui

1. To develop, open up a terminal and activate the ledfx virtual environment

$ C:\ledfx\Scripts\activate.bat

2. Make changes to LedFx’s files in C:/ledfx/ledfx-git. Your changed files will be run when you run LedFx

$ ledfx --open-ui

You can keep the ledfx virtual environment open and keep making changes then running ledfx. No need to reactivate the virtual environment between changes.

Linux

1. Clone the dev branch from the LedFx Github repository:

$ git clone https://github.com/LedFx/LedFx.git -b frontend_beta
$ cd LedFx

2. Install system dependencies via apt install:

$ sudo apt install python-dev \
    libatlas3-base \
    libavformat58 \
    portaudio19-dev \
    pulseaudio

3. Install LedFx in development mode:

$ python setup.py develop

4. This will let you run LedFx directly from your Git repository via:

$ ledfx --open-ui

macOS

1. Clone the dev branch from the LedFx Github repository:

$ git clone https://github.com/LedFx/LedFx.git -b frontend_beta
$ cd ./LedFx

2. Create a python venv for LedFx with python>=3.9 and install dependencies:

$ python3 -m venv ~/ledfx-venv
$ source ~/ledfx-venv/bin/activate
$ brew install portaudio pulseaudio

3. Install LedFx and its requirements using pip:

$ python setup.py develop

4. This will let you run LedFx directly from your Git repository via:

$ ledfx --open-ui

Frontend Development

Building the LedFx frontend is different from how the core backend is built. The frontend is based on React.js and thus uses yarn as the core package management.

Note

LedFx will need to be running in development mode for everything to work. To enable development mode, open the config.yaml file in the .ledfx folder and set dev_mode: true)

Windows

Note

The following instructions assume you have already followed the steps above to install the LedFx dev environment

To get started, first install yarn and all the requirements:

1. Install yarn & LedFx requirements:

$ pip install yarn
$ cd LedFx/frontend
$ yarn install

2. Start in the LedFx repo directory:

$ cd LedFx
$ ledfx

3. While Ledfx is running in the background (Step 2), open a new command prompt and run the following:

$ cd LedFx/frontend
$ yarn start

This will allow you to validate/test your changes by automatically rebuilding as you save .js and .jsx files.

Linux

Note

The following instructions assume you have already followed the steps above to install the LedFx dev environment

To get started, first install yarn and all the requirements:

1. Start in the LedFx repo directory:

$ pip install yarn
$ cd frontend
$ yarn

The easiest way to test and validate your changes is to run a watcher that will automatically rebuild as you save and then just leave LedFx running in a separate command window.

2. Start LedFx in development mode and start the watcher:

$ python3 ledfx
$ yarn start

At that point any change you make to the frontend will be recompiled and after a browser refresh LedFx will pick up the new files. After development and testing you will need to run a full build to generate the appropriate distribution files prior to submitting any changes.

3. When you are finished with your changes, build the frontend:

$ yarn build

macOS

Note

The following instructions assume you have already followed the steps above to install the LedFx dev environment

1. Install nodejs and yarn requirements using homebrew:

$ brew install nodejs
$ brew install yarn
$ cd ~/frontend
$ yarn

2. Start LedFx in developer mode and start the yarn watcher:

$ python3 ledfx
$ yarn start

3. When you are finished with your changes, build the frontend:

$ yarn build

Working with LedFx and React

This project was bootstrapped with Create React App.

Available Frontend Scripts

In the project directory, you can run: yarn start Runs the app in the development mode. Open http://localhost:3000 to view it in the browser. The page will reload if you make edits. You will also see any lint errors in the console.

yarn test Launches the test runner in the interactive watch mode. See the section about running tests for more information.

yarn build Builds the app for production to the build folder. It correctly bundles React in production mode and optimizes the build for the best performance. The build is minified and the filenames include the hashes. Your app is ready to be deployed! See the section about deployment for more information.

Learn More

You can learn more in the Create React App documentation: https://create-react-app.dev/docs/getting-started/ To learn React, check out the React documentation: https://reactjs.org/

Code Splitting This section has moved here: https://facebook.github.io/create-react-app/docs/code-splitting

Analyzing the Bundle Size This section has moved here: https://facebook.github.io/create-react-app/docs/analyzing-the-bundle-size

Making a Progressive Web App This section has moved here: https://facebook.github.io/create-react-app/docs/making-a-progressive-web-app

Advanced Configuration This section has moved here: https://facebook.github.io/create-react-app/docs/advanced-configuration

Deployment This section has moved here: https://facebook.github.io/create-react-app/docs/deployment

yarn build fails to minify This section has moved here: https://facebook.github.io/create-react-app/docs/troubleshooting#npm-run-build-fails-to-minify


Document Development

The documentation is written in reStructuredText. Once you are finished making changes, you must build the documentation. To build the LedFx documentation follow the steps outlined below:

Note

Alternatively, you may run make livehtml in place of make html to open a browser and view your changes in realtime.

Windows

$ cd ~/ledfx/docs
$ pip install -r requirements-docs.txt
$ make html

Linux

$ cd ~/ledfx/docs
$ pip install -r requirements-docs.txt
$ make html

macOS

$ source ~/ledfx-venv/bin/activate
$ cd ~/ledfx/docs
$ pip install -r requirements-docs.txt
$ make html