Skip to content

Commit

Permalink
Commit from GitHub Actions (Update README with File Structure)
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions[bot] committed Jul 24, 2024
1 parent fd18752 commit 80efb4d
Showing 1 changed file with 47 additions and 3 deletions.
50 changes: 47 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,52 @@
# FastAPI

## File Structure

### **Create a .env file based on .env.dist and make all the necessary customizations.**
## File Structure
```
.
├── __init__.py
├── api
│   ├── __init__.py
│   ├── deps.py
│   └── v1
│   ├── __init__.py
│   └── users
│   ├── __init__.py
│   ├── auth
│   │   ├── __init__.py
│   │   └── token.py
│   ├── create.py
│   └── retrieve.py
├── core
│   ├── __init__.py
│   ├── db.py
│   ├── exps.py
│   └── settings.py
├── logic
│   ├── __init__.py
│   ├── security
│   │   ├── __init__.py
│   │   ├── jwt.py
│   │   └── pwd.py
│   └── users
│   ├── __init__.py
│   ├── auth
│   │   ├── __init__.py
│   │   └── auth.py
│   └── users.py
├── models
│   ├── __init__.py
│   ├── base.py
│   ├── token.py
│   └── user.py
└── repositories
├── __init__.py
├── abstract.py
└── user.py
11 directories, 28 files
```

## **Create a .env file based on .env.dist and make all the necessary customizations.**

### To run the application in a docker container, run the command

Expand Down

0 comments on commit 80efb4d

Please sign in to comment.