#Need Backend Help/Guidance

13 messages · Page 1 of 1 (latest)

slim perch
#

Hi, I am building a discord bot in Python and it's dashboard using React, the frontend part is all clear, but the problem is with backend, I will be coding it's backend in Django but I don't even have a clue how will I do that, can someone please guide me? (I'll be learning Django for backend starting tomorrow)

echo oyster
stray sage
#

Is this a school project?

slim perch
slim perch
echo oyster
slim perch
echo oyster
#

Here's the FastAPI quickstart code:

from fastapi import FastAPI

app = FastAPI()

@app.get("/")
async def root():
    return {"message": "Hello World"}
#

But use whatever you feel like 🙂

slim perch
slim perch
echo oyster