Go to file
Anonymous 8e78638a75 Remove unnecessary with_answer argument in Riddle.to_dict 2025-01-30 08:29:19 -05:00
app Remove unnecessary with_answer argument in Riddle.to_dict 2025-01-30 08:29:19 -05:00
README.md Update README 2025-01-30 08:20:40 -05:00
pyproject.toml Add metadata 2025-01-30 08:17:52 -05:00

README.md

Example Banjo app

Banjo is an abstraction over Django which provides a simplified subset of Djangos functionality, meant for beginners.

A Banjo app consists of two files, models.py and views.py, within a directory called app. The app is run by calling banjo.

Installation

If you want to run this app on your computer, first install poetry. Then open Terminal and run the following:

$ cd ~/Desktop
$ git clone https://git.makingwithcode.org/archive/banjo-demo.git
$ cd banjo-demo
$ poetry install
$ poetry run banjo

Your Terminal is now serving the riddle app. Open http://localhost:8000/api to see the automatically-generated API pages.