The Open Filament Database, hosted by the new "Open Filament Collective" group, currently facilitated by SimplyPrint.
The beautiful thing about the database is that it's open source so anyone can contribute, whether you're a hobbyist, print farm or brand.
The steps to contribute to the database are simple but may get technical at times depending on how you want to do it, don't worry if you don't all understand terms, we'll guide you through it.
- Create a GitHub account
- Create a copy of the database (called "forking" this repository)
- Install a few small applications (Git, Python, Node.js)
- Download your copy of the database (called "cloning" it).
- Use either our simple web editor or use the manual method
- Check if your data has errors
- Upload your data and make what's called a pull request
If you don’t have one already, create a free GitHub account.
Click the Fork button in the top right of this page, a guide is available here if needed

If you don't have Git installed, follow this guide. The OFD wrapper script will help you install Python and Node.js automatically (see step 5).
Download the database using either this guide or by just using the command below, with YOUR_USERNAME replaced ofc!
git clone https://github.com/YOUR_USERNAME/open-filament-database.git
cd open-filament-databaseUse the web editor (recommended) or edit files manually:
Using the OFD Wrapper (Recommended - handles setup automatically):
Linux/macOS:
./ofd.sh webuiWindows:
ofd.bat webuiOn first run, the wrapper will:
- Check if Python 3.10+ and Node.js are installed (and help install them if not)
- Create a Python virtual environment
- Install all required dependencies
- Start the WebUI development server
Then access it in your browser at http://localhost:5173
The WebUI includes built-in validation and data sorting features to help ensure your changes are correct. Full WebUI guide
Manual setup: If you prefer to set things up manually, install our requirements and then:
cd webui
npm ci
npm run devManual editing: If you prefer to edit files directly, follow this guide
The WebUI can validate and sort your data automatically:
- Click the "Validate" button in the top-right corner to check for errors
- Click the "Sort Data" button to organize your JSON files consistently
- Fix any validation errors that appear (they'll be highlighted in red)
Alternatively, you can use the command-line validation scripts (see guide):
Linux/macOS:
./ofd.sh validate # Run all validations
./ofd.sh validate --folder-names # Validates folder names
./ofd.sh validate --json-files # Validates JSON filesWindows:
ofd.bat validate # Run all validations
ofd.bat validate --folder-names # Validates folder names
ofd.bat validate --json-files # Validates JSON filesBefore submitting, make sure your data is sorted consistently:
- In the WebUI: Click the "Sort Data" button in the top-right corner
- Or via command line: Run
./ofd.sh script style_data(Linux/macOS) orofd.bat script style_data(Windows)
Then add your changes:
git add .Create a commit with a descriptive message (e.g., "Added Elegoo Red PLA variant"):
git commit -m "COMMIT_MESSAGE"Upload your changes to GitHub:
git push -u origin YOUR_BRANCHNAMEFinally, make a pull request using this guide
