Skip to content

Commit efeceb3

Browse files
committed
Added &copy Information (Minor)
1 parent 48806f2 commit efeceb3

15 files changed

+81
-2
lines changed

CHANGELOG.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
# Change Log
2+
3+
## [1.0.0] 2022-10-26
4+
### Minimal Version
5+
6+
- The stable version that provides:
7+
- Nice BS5 Design
8+
- Session-based AUTH
9+
- Alembic for DB migration
10+
- Dual Persistence: SQLite & MySql
11+

src/__init__.py

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
1-
from fastapi import FastAPI
1+
# -*- encoding: utf-8 -*-
2+
"""
3+
Copyright (c) 2019 - present AppSeed.us
4+
"""
25

6+
from fastapi import FastAPI
37

48
def create_app():
59
app = FastAPI()

src/app.py

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
# -*- encoding: utf-8 -*-
2+
"""
3+
Copyright (c) 2019 - present AppSeed.us
4+
"""
5+
16
from fastapi import FastAPI
27
from fastapi.staticfiles import StaticFiles
38
from fastapi.middleware.cors import CORSMiddleware

src/config.py

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
# -*- encoding: utf-8 -*-
2+
"""
3+
Copyright (c) 2019 - present AppSeed.us
4+
"""
5+
16
from pydantic import BaseSettings
27

38
class Settings(BaseSettings):

src/helpers/database.py

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
# -*- encoding: utf-8 -*-
2+
"""
3+
Copyright (c) 2019 - present AppSeed.us
4+
"""
5+
16
from sqlalchemy import create_engine
27
from sqlalchemy.ext.declarative import declarative_base
38
from sqlalchemy.orm import sessionmaker

src/helpers/utils.py

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
# -*- encoding: utf-8 -*-
2+
"""
3+
Copyright (c) 2019 - present AppSeed.us
4+
"""
5+
16
from passlib.context import CryptContext
27

38
pwd_context = CryptContext(schemes=['bcrypt'], deprecated="auto")

src/models.py

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
# -*- encoding: utf-8 -*-
2+
"""
3+
Copyright (c) 2019 - present AppSeed.us
4+
"""
5+
16
from src.helpers.database import Base
27

38
from sqlalchemy import Column, String, Integer, Float, ForeignKey

src/oauth2.py

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
# -*- encoding: utf-8 -*-
2+
"""
3+
Copyright (c) 2019 - present AppSeed.us
4+
"""
5+
16
from datetime import datetime, timedelta
27
from urllib.request import Request
38
from fastapi import Depends, status, HTTPException

src/routers/auth/auth_routes.py

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
# -*- encoding: utf-8 -*-
2+
"""
3+
Copyright (c) 2019 - present AppSeed.us
4+
"""
5+
16
from fastapi import APIRouter, Depends, status, Response, HTTPException, Request
27
from fastapi.responses import RedirectResponse
38
from fastapi.responses import HTMLResponse

src/routers/healtcheck.py

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
# -*- encoding: utf-8 -*-
2+
"""
3+
Copyright (c) 2019 - present AppSeed.us
4+
"""
5+

0 commit comments

Comments
 (0)