fix: duplicated 'use' in set-up-passport.english.md (#37134)

This commit is contained in:
Alex Parra
2019-11-07 17:42:34 +00:00
committed by Oliver Eyton-Williams
parent 18891bf3ff
commit 647945f4ac

View File

@ -12,7 +12,7 @@ It's time to set up <em>Passport</em> so we can finally start allowing a user to
To set up Passport for use in your project, you will need to add it as a dependency first in your package.json. <code>"passport": "^0.3.2"</code>
In addition, add Express-session as a dependency now as well. Express-session has a ton of advanced features you can use but for now we're just going to use the basics! <code>"express-session": "^1.15.0"</code>
You will need to set up the session settings now and initialize Passport. Be sure to first create the variables 'session' and 'passport' to require 'express-session' and 'passport' respectively.
To set up your express app to use use the session we'll define just a few basic options. Be sure to add 'SESSION_SECRET' to your .env file and give it a random value. This is used to compute the hash used to encrypt your cookie!
To set up your express app to use the session we'll define just a few basic options. Be sure to add 'SESSION_SECRET' to your .env file and give it a random value. This is used to compute the hash used to encrypt your cookie!
```js
app.use(session({