Skip to content

Commit

Permalink
Merge pull request #1 from davidxw/move-to-src
Browse files Browse the repository at this point in the history
Moved source code to src directory
  • Loading branch information
davidxw authored Aug 1, 2023
2 parents fc3f5f0 + 4a7b5a5 commit b2b9ffe
Show file tree
Hide file tree
Showing 82 changed files with 12 additions and 9 deletions.
3 changes: 3 additions & 0 deletions .github/workflows/open-ai-app.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,9 @@ on:
jobs:
build:
runs-on: ubuntu-latest
defaults:
run:
working-directory: ./src

steps:
- name: 🌱 Checkout to the branch
Expand Down
12 changes: 6 additions & 6 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,19 +1,19 @@
# See https://help.github.com/articles/ignoring-files/ for more about ignoring files.

# dependencies
/node_modules
/.pnp
**/node_modules
**/.pnp
.pnp.js

# testing
/coverage
**/coverage

# next.js
/.next/
/out/
**/.next/
**/out/

# production
/build
**/build

# misc
.DS_Store
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ Please see the [section below](#🪪-add-an-identity-provider) for important inf

# 👨🏻‍💻 Run from your local machine

Clone this repository locally or fork to your Github account.
Clone this repository locally or fork to your Github account. Run all of the the steps below from the "src" directory.

1. Create a new file named `.env.local` to store the environment variables add the following variables

Expand Down
2 changes: 1 addition & 1 deletion .env.example → src/.env.example
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ AZURE_AD_CLIENT_SECRET=
AZURE_AD_TENANT_ID=

NEXTAUTH_SECRET=this-is-a-secret-with-minimum-length-of-32-characters
NEXTAUTH_URL=http://localhost:3000 # add your production URL here
NEXTAUTH_URL=http://localhost:3000 # add your production URL here (and remove this comment)

AZURE_COSMOSEDB_URI=
AZURE_COSMOSEDB_KEY=
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes
File renamed without changes.
2 changes: 1 addition & 1 deletion tsconfig.json → src/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,6 @@
"@/*": ["./*"]
}
},
"include": ["next-env.d.ts", "**/*.ts", "**/*.tsx", ".next/types/**/*.ts"],
"include": ["src/next-env.d.ts", "**/*.ts", "**/*.tsx", ".next/types/**/*.ts"],
"exclude": ["node_modules"]
}
File renamed without changes.

0 comments on commit b2b9ffe

Please sign in to comment.