fastapi-vue
fastapi-vue copied to clipboard
Single Page App with FastAPI and Vue.js
Without change state isLoggedIn=false we can see and have access to all NavBar options (like Dashboard, Profile). This patch disable access to Dashboard and Profile after click logOut on frontend.
Without this, we can develop and login to the app. with docker-compose.
Anybody interested in having this awesome project support Vue3? I can create a PR for that. And many thanks @mjhea0 for writing the great tutorial for this project 👏🏻
https://github.com/testdrivenio/fastapi-vue/blob/master/services/backend/src/database/models.py#L22 Currently: `return f"{self.title}, {self.author_id} on {self.created_at}"` However, the attribute `author_id` does not exist. Perhaps it should be this instead? `return f"{self.title}, {self.author}, {self.id} on {self.created_at}"`
Hi, many thanks for the hard work and the post associated! It helped me a lot learn about those frameworks :) However, from a complete fresh start (aka, the first...
On the GitHub page, under "About" it says: "Single Page App with Flask and Vue.js". But it should be "Single Page App with FastAPI and Vue.js".
Howdy - first, thank you for the excellent tutorial. Has been a great launching off point to get me used to Vue/FastAPI (as a recovering manager/executive who hasn't coded up...
Hey all, It's not a major issue, but just to make you aware. After setting up the project, we see the following ESLINT error :  Otherwise everything...
Has anyone found a way to get this application to support the MSAL authentication library or any like library? I'm curious on what type of effort this would be to...
fastapi-vue % docker-compose up -d --build [+] Building 1.6s (12/12) FINISHED => [internal] load build definition from Dockerfile 0.0s => => transferring dockerfile: 313B 0.0s => [internal] load .dockerignore 0.0s...