This project is intended to be a catalog for OpenForge Tiles.
You can find the requirements doc here.
This project was created using nextjs-flask. Information about the boilerplate and basics of how to use it can be found in BOILERPLATE.md
All python code in this project is licensed under the PSFL. The license text can be found under api/LICENSE.txt.
All node code in this project is licensed under the MIT license. The licene text can be found under app/LICENSE.txt
There is a default API token set when in development mode. That token is "1234567890". You can change it by setting the API_TOKEN environment variable.
To call any write endpoint, you need to pass the API token in the Authorization header with the value Bearer <API_TOKEN>.
Install pnpm:
curl -fsSL https://get.pnpm.io/install.sh | sh -
We use pyenv to manage python versions.
We also use pyenv-virtualenv to manage virtual environments. First, install the version of python we use: 3.13.3. You can install it with pyenv install 3.13.3. To create a virtual environment for this project, run pyenv virtualenv 3.13.3 openforge_catalog.
To activate the virtual environment, run pyenv activate openforge_catalog.
To deactivate the virtual environment, run pyenv deactivate.
Dont exit the virtual environment, you'll need it for the next step.
Now we will do virtualenvwrapper. First install it pip install virtualenvwrapper. Until I come up with a better solution, you'll need to use pyenv-virtualenvwrapper to manage your virtual environments. You can find more information about it here. Easiest way to install it is to run git clone https://github.com/pyenv/pyenv-virtualenvwrapper.git $(pyenv root)/plugins/pyenv-virtualenvwrapper. If you're using mac try to use brew install pyenv-virtualenvwrapper instead.
Then, run pyenv virtualenvwrapper to initialize virtualenvwrapper. Next, run add2virtualenv . to add the local directory to the virtualenv.
Now you can install the dependencies with pip install -r requirements.txt and install setuptools with pip install setuptools.
Finally, run ./setup.py install to install the dependencies.
You need to have postgres installed on your machine. You can find more information about it here.
For Debian/Ubuntu users: sudo apt install libpq-dev libyaml-dev postgresql-client
For Mac users: brew install libpq & brew install postgresql & brew install openssl
After that, recompile psycopg with pip install --upgrade --force-reinstall psycopg==3.2.3 and pip install "psycopg[binary]==3.2.3".
To start the postgres container, run docker compose up -d.
To connect to the postgres container, run psql -U openforge -W openforge -h 127.0.0.1.
To run the db update script, run bin/db_update up.
If you want to load the fixtures, run bin/fixtures.
Now you can run yarn flask-dev to start the flask server.
To run the test suite, first create the test database:
PGPASSWORD=openforge createdb -U openforge -h localhost openforge_testThen run the tests:
pytest tests/Each test gets a clean database state.
This project uses pre-commit hooks to ensure code quality and consistency. The hooks will automatically run when you commit changes.
pip install -r requirements-dev.txt
pre-commit install- JavaScript/TypeScript files: Runs ESLint with auto-fix and TypeScript type checking
- Python files: Runs ruff for linting and formatting (compatible with Black)
- All files: Removes trailing whitespace, fixes end-of-file issues, checks for merge conflicts
To run the hooks manually on all files:
pre-commit run --all-filesTo run on specific files:
pre-commit run --files path/to/file.py# Check for linting issues
ruff check .
# Auto-fix issues
ruff check --fix .
# Format code
ruff format .# Run ESLint
npm run lint
# Run ESLint with auto-fix
npm run lint -- --fix
# Type checking
npm run type-checkCREATE TYPE blueprint_type
AS ENUM ('model', 'blueprint')id UUID PRIMARY KEY DEFAULT gen_random_uuid()
blueprint_name TEXT NOT NULL
blueprint_type blueprint_type NOT NULL
config JSONB NOT NULL
file_size INT
file_md5 TEXT
file_name TEXT
full_name TEXT
file_modified_at TIMESTAMP
storage_address TEXT
created_at TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP
updated_at TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP
UNIQUE NULLS NOT DISTINCT (file_md5)id UUID PRIMARY KEY DEFAULT gen_random_uuid()
blueprint_id UUID NOT NULL REFERENCES blueprints(id)
tag TEXT ARRAY NOT NULL
created_at TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP
updated_at TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMPid UUID PRIMARY KEY DEFAULT gen_random_uuid()
image_name TEXT NOT NULL
image_url TEXT NOT NULL UNIQUE
created_at TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP
updated_at TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMPid UUID PRIMARY KEY DEFAULT gen_random_uuid()
blueprint_id UUID NOT NULL REFERENCES blueprints(id)
image_id UUID NOT NULL REFERENCES images(id)
created_at TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP
updated_at TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP
UNIQUE NULLS NOT DISTINCT (blueprint_id, image_id)id UUID PRIMARY KEY DEFAULT gen_random_uuid()
documentation_name TEXT NOT NULL
document TEXT NOT NULL
created_at TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP
updated_at TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMPid UUID PRIMARY KEY DEFAULT gen_random_uuid()
blueprint_id UUID NOT NULL REFERENCES blueprints(id)
documentation_id UUID NOT NULL REFERENCES documentation(id)
created_at TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP
updated_at TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMPThe URL for the "Base Generator" tab is configured at runtime using public/app-config.json.
- By default, this file contains:
{
"BASE_GENERATOR_URL": "http://localhost:8000"
}- To override this value for your deployment, update or replace
public/app-config.jsonduring your build or deploy process. For example:
echo '{ "BASE_GENERATOR_URL": "https://your-url.com" }' > public/app-config.json- The app will read this value at runtime and use it for the Base Generator tab.