Skip to content

luhack-test/luhack-bot-and-website

Folders and files

NameName
Last commit message
Last commit date

Latest commit

e409885 · Oct 6, 2022
Apr 28, 2021
Sep 30, 2022
Oct 3, 2022
Sep 29, 2022
Sep 25, 2022
Oct 1, 2022
Sep 6, 2022
Jul 27, 2022
Apr 29, 2019
Apr 26, 2019
Sep 18, 2020
Sep 25, 2022
Oct 6, 2022
Apr 26, 2019
Oct 6, 2022
Sep 18, 2020
Sep 19, 2020

Repository files navigation

luhack-bot-and-website

This is the repo of LUHack's Discord bot and Website.

You can visit the website at: https://scc-luhack.lancs.ac.uk

secrets setup

  • Create a copy of .env.example as .env and fill in the secrets

poetry setup

https://github.com/sdispater/poetry

poetry install

running the bot

poetry run start_bot

running the writeups server

poetry run uvicorn luhack_site.site:app

performing database migrations

After making changes to the db schema, you should run

poetry run alembic revision --autogenerate -m "<description of schema change>"

When the db schema has been changed, you should run

poetry run alembic upgrade head

To check if the current db schema revision is the latest

poetry run alembic current
  • It should show a revision hash with (head) next to it if the db schema is up to data.

required postgres extensions

  • uuid-ossp