Compare commits

...

2 Commits

Author SHA1 Message Date
6bbe1a3748 Merge pull request 'fixed auth error' (#3) from dev into production
All checks were successful
Gitea Actions Demo / Explore-Gitea-Actions (push) Successful in 0s
Reviewed-on: #3
2025-03-17 16:13:27 +00:00
5732554fe2 fixed auth error
All checks were successful
Gitea Actions Demo / Explore-Gitea-Actions (push) Successful in 0s
2025-03-17 17:12:57 +01:00
2 changed files with 3 additions and 2 deletions

View File

@ -10,6 +10,6 @@ PROJECT_PATH=$1
echo "Deploying project..." echo "Deploying project..."
cd "$PROJECT_PATH" || { echo "Directory not found: $PROJECT_PATH"; exit 1; } cd "$PROJECT_PATH" || { echo "Directory not found: $PROJECT_PATH"; exit 1; }
git pull origin main git pull origin production
docker compose up -d --no-deps --build nextapp docker compose up -d --no-deps --build nextapp
echo "Deployment finished!" echo "Deployment finished!"

View File

@ -47,6 +47,7 @@ export const adapter = DrizzleAdapter(db, {
}) as Adapter; }) as Adapter;
export const authConfig = { export const authConfig = {
trustHost: true,
providers: [ providers: [
DiscordProvider, DiscordProvider,
GoogleProvider, GoogleProvider,