Skip to content

Commit

Permalink
Update gitignore
Browse files Browse the repository at this point in the history
  • Loading branch information
branberry committed Oct 9, 2024
1 parent 7e21d00 commit cf8ec01
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 0 deletions.
1 change: 1 addition & 0 deletions src/init/DocumentDatabase.js
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,7 @@ class RealmInterface {
}

async fetchDocset(matchConditions = { project: siteMetadata.project }) {
console.log(siteMetadata.reposDatabase)
return this.realmClient.callFunction('fetchDocset', siteMetadata.reposDatabase, matchConditions);
}

Expand Down
2 changes: 2 additions & 0 deletions src/utils/setup/validate-env-variables.js
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,9 @@ const replaceIncorrectEnvVars = (incorrectEnvVars, envVars) => {
throw err;
}


const dataArray = data.split('\n');
console.log(data)

// remove incorrect variables from .env files
for (const dataEntry in dataArray) {
Expand Down
2 changes: 2 additions & 0 deletions src/utils/site-metadata.js
Original file line number Diff line number Diff line change
Expand Up @@ -59,6 +59,8 @@ const getPathPrefix = (pathPrefix) => {
/**
* Get site metadata used to identify this build and query correct documents
*/

console.log(manifestMetadata)
const siteMetadata = {
commitHash: process.env.COMMIT_HASH || '',
database: getDatabase(process.env.SNOOTY_ENV),
Expand Down

0 comments on commit cf8ec01

Please sign in to comment.