This is the codebase for the rewritten main Metaculus website, it's expected to be live by the start of September.
Feel free to suggest changes and report bugs
- Install Postgres
- Install redis
- Install poetry and python 3.12
- Install node
- Install pgvector database extension
poetry install
(optional) poetry run python manage.py mjml_compose
Create a database called metaculus
Load our testing database dump (WIP, should be merged soon)
poetry run python3 manage.py migrate
cd front_end && npm install
cd front_end && npm run dev
python manage.py rundramatiq
@TODO
- We use Husky to run linter and typescript checks before committing (see
front_end/.husky
). - To enable restricted Dev access, you need to add
ALPHA_ACCESS_TOKEN=<token>
as an env variable for both the BE and the FE (both the FE server & the env where the FE is compiled, which should be the same in most cases)
We use Django Anymail to integrate various email providers through a single library, simplifying our email management By default, we use the Mailgun provider.
Env Configuration:
MAILGUN_API_KEY
EMAIL_HOST_USER
sudo apt install postgresql-15-pgvector
Note: Replace 16 with your Postgres server version- Connect to psql and enable extension:
CREATE EXTENSION vector;
git clone https://github.com/pgvector/pgvector.git
cd pgvector
- Find out your
pg_config
path
A few common paths on Mac are:- EDB installer:
/Library/PostgreSQL/16/bin/pg_config
- Homebrew (arm64):
/opt/homebrew/opt/postgresql@16/bin/pg_config
- Homebrew (x86-64):
/usr/local/opt/postgresql@16/bin/pg_config
Note: Replace 16 with your Postgres server version
- EDB installer:
export PG_CONFIG=path/to/pg_config
make
make install
- Connect to psql and enable extension:
CREATE EXTENSION vector;
Other installations and detailed instructions - https://github.com/pgvector/pgvector