File tree 3 files changed +3
-10
lines changed
3 files changed +3
-10
lines changed Original file line number Diff line number Diff line change @@ -47,4 +47,4 @@ ADMINER_PORT=8081
47
47
# Image Repository
48
48
GITHUB_CONTAINER_REPO_SERVER = ghcr.io/jbris/fastapi-react-graphql
49
49
GITHUB_CONTAINER_REPO_CLIENT = ghcr.io/jbris/fastapi-react-graphql-client
50
- APP_VERSION = 0 .0.1
50
+ APP_VERSION = 1 .0.0
Original file line number Diff line number Diff line change 1
1
VITE_APP_NAME = fastapi-react-graphql
2
2
VITE_APP_VERSION = 1.0.0
3
- VITE_GRAPHQL_URL = http://server :3000
4
- VITE_REDIS_URL = redis://redis :6379
3
+ VITE_GRAPHQL_URL = http://localhost :3000
4
+ VITE_REDIS_URL = redis://localhost :6379
Original file line number Diff line number Diff line change 2
2
from gql import graphql_app
3
3
from fastapi .middleware .cors import CORSMiddleware
4
4
5
- origins = [
6
- "http://localhost" ,
7
- "localhost" ,
8
- "http://localhost:3000" ,
9
- "localhost:3000"
10
- ]
11
-
12
5
app = FastAPI ()
13
6
14
7
app .add_middleware (
You can’t perform that action at this time.
0 commit comments