ishanpage

joined 1 year ago
[–] [email protected] 0 points 9 months ago (4 children)

This is a FastAPI feature - Autogenerated documentation using Swagger.

You can turn it off by setting docs_url=None

In your linked main.py:

app = FastAPI(
    title="IslabTweet",
    description=__doc__,
    docs_url="/", # change this to None to disable the docs
    version=VERSION,
)

Hope this helps!

[–] [email protected] 1 points 10 months ago

This is the best option. I recommend Nand2Tetris to everyone! It's an incredibly well designed and executed course

 

An adventure fuelled by scratching an itch

 

I wrote a guide about jq which has interactive examples

[–] [email protected] 0 points 1 year ago (1 children)

I'm from India so these numbers might be a bit weird. My yearly comp has basically gone like this from 2017 to 2023

$0.7k -> $3.6k -> $4.8k -> $20k

 

I'll start:

When I was first learning to use Docker, I didn't realize that most tutorials that include a database don't configure the database to persist. Imagine my surprise when I couldn't figure out why the database kept getting wiped!