vichannnnn / holy-grail

Holy Grail is an online open-content collaborative depository web application for students in Singapore to share notes and resources for educative purpose.

Home Page:https://grail.moe

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Holy Grail

codecov Python Docker Deploy Deploy

Grail-chan

This is a GitHub monorepo for the Holy Grail webapp consisting of a few services: Celery task runner, Redis broker, Postgres database, FastAPI backend and React Frontend.

Updated changes are automatically deployed to their respective environment (development, production).

Holy Grail is a completely free-to-access web library aimed at Singaporean students that houses all the summary notes and practice papers for GCE 'O' Levels, GCE 'A' Levels and International Baccalaureate.

Overview

The backend is deployed with Docker, development is also done through Docker with hot reload properly set up for the best development experience while keeping everything isolated.

The frontend can be run with bun runtime (or yarn and pnpm) and built with Vite, development experience is also ensured with hot reload properly in place.

Quick set-up and Local Deployment

  • Run your Python on the shell and type in this, copy the result and paste into the .env_example for your SECRET_KEY .
import secrets
secret_key = secrets.token_hex(32)
  • Run the following command (For backend development only)
cd holy-grail-backend
cp .env.example .env
make build
make migrate
  • Run the following command (For frontend development only)
cd holy-grail-frontend
while read -r line; do export "$line"; done < .env.example
bun install
bun run local

NOTE: If you don't have WSL installed and you're using Windows environment, you could use any other JavaScript runtime such as yarn or pnpm, just make sure you don't push the lockfile when you're done.

  • To set up your virtualenv for pre-commit hooks
make venv
source holy-grail-backend/backend/app/.venv/bin/activate
pre-commit install

You should be able to see (holy-grail-py1.0) in your terminal beside your name, this means you're accessing all the packages required for development of the app now. If your pre-commit hook is failing, please check the error and make sure you re-add and commit the changed files.

Usage

Go to http://localhost:8005/docs to access the endpoints from the Swagger UI. Go to http://localhost:5173/ or http://localhost:5175/ (most likely 5175 unless you set something else) to access the web application.

You can also run make runserver to access the same application connected to the same database in port 9005, this is purely for debugging purpose with pdb. In this way, you have to access http://localhost:9005/docs while allowing interactive CLI for your debugging purpose.

You can run make check to run your code through mypy, ruff and pytest as a pre-hook commit for your own projects.

Contributing

Pull requests are welcome. For major changes, please open an issue first to discuss what you would like to change.

Please make sure that all backend contributions are updated with appropriate tests and passed with make tests first.

About

Holy Grail is an online open-content collaborative depository web application for students in Singapore to share notes and resources for educative purpose.

https://grail.moe

License:MIT License


Languages

Language:TypeScript 49.7%Language:Python 39.9%Language:HTML 5.2%Language:CSS 4.3%Language:Makefile 0.5%Language:Mako 0.1%Language:JavaScript 0.1%Language:Dockerfile 0.1%Language:Shell 0.0%