Skip to content

Commit

Permalink
updates
Browse files Browse the repository at this point in the history
Signed-off-by: Jess Frazelle <[email protected]>
  • Loading branch information
jessfraz committed Oct 18, 2023
1 parent bdfae62 commit e060922
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,3 +30,13 @@ Please run the following commands to ensure that your code is as ready for revie
```bash
yarn fmt --fix && yarn test
```

### Setting a cookie for local host

1. Get a dev api token from: https://dev.kittycad.io
2. Open the dev console and run the following:
```js
var CookieDate = new Date;
CookieDate.setFullYear(CookieDate.getFullYear() +10);
document.cookie = "__Secure-next-auth.session-token=YOUR_TOKEN;Secure;expires="+CookieDate.toUTCString() + ';';
```

0 comments on commit e060922

Please sign in to comment.