Skip to content

Commit

Permalink
headless browser cache removed
Browse files Browse the repository at this point in the history
  • Loading branch information
sehrish30 committed Jul 21, 2023
1 parent af74dd4 commit 2971408
Show file tree
Hide file tree
Showing 12 changed files with 27,538 additions and 0 deletions.
5 changes: 5 additions & 0 deletions headlessBrowserTesting/.env
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
MONGO_URI=mongodb+srv://nasa:nasa@cluster0.h0sil0s.mongodb.net/todoApp?retryWrites=true&w=majority
SECRET_KEY=QovNVS7wzzLIqDkbnwF1u0ZYsmODZeWY
googleClientID=567562781843-kj2874kmpj2gc3ftmqtndqmq312jr9lr.apps.googleusercontent.com
googleClientSecret=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
REDIS_URL=redis://default:VODDIrh8surEMBxuVJB3CndKrz9jVd8F@redis-12048.c245.us-east-1-3.ec2.cloud.redislabs.com:12048
3 changes: 3 additions & 0 deletions headlessBrowserTesting/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
node_modules
nohup.out
.DS_Store
13 changes: 13 additions & 0 deletions headlessBrowserTesting/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
# AdvancedNodeStarter

Starting project for a course on Advanced Node @ Udemy

### Setup

- Run `npm install` in the root of the project to install server dependencies
- Change into the client directory and run `npm install --legacy-peer-deps`
- Change back into the root of the project and run `npm run dev` to start the server
- Access the application at `localhost:3000` in your browser

**Important:**
The credentials for the Mongo Atlas DB in `dev.js` are read only. If you attempt to log in without first adding your own connection string (covered later in the course) you will see an error: `[0] MongoError: user is not allowed to do action [insert] on [advnode.users]`
21 changes: 21 additions & 0 deletions headlessBrowserTesting/client/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
# See https://help.github.com/ignore-files/ for more about ignoring files.

# dependencies
/node_modules

# testing
/coverage

# production
/build

# misc
.DS_Store
.env.local
.env.development.local
.env.test.local
.env.production.local

npm-debug.log*
yarn-debug.log*
yarn-error.log*
2,138 changes: 2,138 additions & 0 deletions headlessBrowserTesting/client/README.md

Large diffs are not rendered by default.

Loading

0 comments on commit 2971408

Please sign in to comment.