https://github.com/jod35/fastapi-beyond-crud-docs
This is the course website for FastAPI Beyond CRUD
https://github.com/jod35/fastapi-beyond-crud-docs
html mkdocs
Last synced: 2 months ago
JSON representation
This is the course website for FastAPI Beyond CRUD
- Host: GitHub
- URL: https://github.com/jod35/fastapi-beyond-crud-docs
- Owner: jod35
- Created: 2024-05-08T10:30:28.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2025-08-14T08:09:05.000Z (3 months ago)
- Last Synced: 2025-08-14T08:36:36.777Z (3 months ago)
- Topics: html, mkdocs
- Language: HTML
- Homepage: https://jod35.github.io/fastapi-beyond-crud-docs/site/
- Size: 7.08 MB
- Stars: 24
- Watchers: 2
- Forks: 15
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
- jimsghstars - jod35/fastapi-beyond-crud-docs - This is the course website for FastAPI Beyond CRUD (HTML)
README
Here's the updated markdown with instructions for setting up a virtual environment:
# FastAPI Beyond the CRUD Stuff
Welcome to the documentation for the FastAPI Beyond CRUD course.
## Table of Contents
- [Introduction](#introduction)
- [Prerequisites](#prerequisites)
- [Project Setup](#project-setup)
- [Running the Application](#running-the-application)
## Introduction
This repository contains the source code for the course website.
## Prerequisites
Before starting, make sure you have the following installed:
- Python 3.x
## Project Setup
To set up the project, follow these steps:
1. **Clone the repository:**
```bash
git clone https://github.com/jod35/fastapi-beyond-crud-docs.git
```
2. **Navigate into the project directory:**
```bash
cd fastapi-beyond-crud-docs
```
3. **Create a virtual environment:**
- On macOS/Linux:
```bash
python3 -m venv venv
```
- On Windows:
```bash
python -m venv venv
```
4. **Activate the virtual environment:**
- On macOS/Linux:
```bash
source venv/bin/activate
```
- On Windows:
```bash
venv\Scripts\activate
```
5. **Install the required dependencies:**
```bash
pip install -r requirements.txt
```
6. **Run the application:**
```bash
mkdocs serve
```
Your application should now be up and running within the virtual environment.