Skip to content

Commit

Permalink
Fix paths to creds and in README
Browse files Browse the repository at this point in the history
  • Loading branch information
jspahrsummers committed Nov 20, 2024
1 parent 73b13a0 commit 4103932
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions src/gdrive/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ Make sure to build the server with either `npm run build` or `npm run watch`.

To authenticate and save credentials:

1. Run the server with the `auth` argument: `node build/gdrive auth`
1. Run the server with the `auth` argument: `node ./dist auth`
2. This will open an authentication flow in your system browser
3. Complete the authentication process
4. Credentials will be saved for future use
Expand All @@ -49,7 +49,7 @@ To authenticate and save credentials:

After authenticating:

1. Run the server normally: `node build/gdrive`
1. Run the server normally: `node ./dist`
2. The server will load the saved credentials and start

Note: If you haven't authenticated yet, the server will prompt you to run with the `auth` argument first.
Note: If you haven't authenticated yet, the server will prompt you to run with the `auth` argument first.
4 changes: 2 additions & 2 deletions src/gdrive/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -175,15 +175,15 @@ server.setRequestHandler(CallToolRequestSchema, async (request) => {

const credentialsPath = path.join(
path.dirname(new URL(import.meta.url).pathname),
"../../.gdrive-server-credentials.json",
"../../../.gdrive-server-credentials.json",
);

async function authenticateAndSaveCredentials() {
console.log("Launching auth flow…");
const auth = await authenticate({
keyfilePath: path.join(
path.dirname(new URL(import.meta.url).pathname),
"../../gcp-oauth.keys.json",
"../../../gcp-oauth.keys.json",
),
scopes: ["https://www.googleapis.com/auth/drive.readonly"],
});
Expand Down

0 comments on commit 4103932

Please sign in to comment.