- Git download link
- Node.js v20 download link
git clone https://github.com/nicolaschan/bell.git
cd bell
We use the yarn package manager. Install it if you haven't already:
sudo npm install -g yarnInstall the dependencies
yarnCommon errors:
- If Python is missing, install Python
- Check if Node.js is the right version (v20 works). Use
nto change your version:
node --version # Expect 20
# If not 20, do the following. Skip this if it's already 20.
sudo npm install -g n
sudo n 20
# Re-run yarn now that you have the correct Node.js versionyarn build
cp .env.dev .env
git submodule update --init --recursiveyarn start
If all went well, visit http://localhost:8080 to view your local instance of bell.
In a new terminal, set up webpack to rebuild every time you save a change:
yarn run build --watch
Edit a file, then reload the local page at http://localhost:8080.