From 5673332c289bfab111eae16aff89e9f9442ab5b4 Mon Sep 17 00:00:00 2001 From: foglabs Date: Tue, 2 May 2023 12:15:00 -0400 Subject: [PATCH] 'remove old main.py and doc typo' --- docs/install.md | 4 ++-- main.py | 8 -------- 2 files changed, 2 insertions(+), 10 deletions(-) delete mode 100644 main.py diff --git a/docs/install.md b/docs/install.md index ffb1615f..f6ff9853 100644 --- a/docs/install.md +++ b/docs/install.md @@ -50,10 +50,10 @@ Visit: [localhost:8000](http://localhost:8000/) ## Seed the database -To seed the database with fake data, run the `seed.py` script: +To seed the database with fake data, run the `seeds.py` script: ```shell -python tests/seed.py +python tests/seeds.py ``` **Optional:** Customize the number of records created by changing the `num_*` variables in the `seed` function. diff --git a/main.py b/main.py deleted file mode 100644 index ff5fa222..00000000 --- a/main.py +++ /dev/null @@ -1,8 +0,0 @@ -from fastapi import FastAPI - -app = FastAPI() - - -@app.get('/') -async def root(): - return {'CLAMS': 'Chowda!'}