This commit is contained in:
Erik 2022-03-26 22:20:20 +02:00
parent 07d767a4ae
commit c4630633b8
Signed by: Navy.gif
GPG Key ID: 811EC0CD80E7E5FB
4 changed files with 14 additions and 2 deletions

1
.gitignore vendored Normal file
View File

@ -0,0 +1 @@
.vscode

View File

@ -15,6 +15,7 @@ import { useLoginContext } from './Structures/UserContext';
import NotFound from './pages/NotFound'; import NotFound from './pages/NotFound';
import Upload from './pages/Upload'; import Upload from './pages/Upload';
import { UnauthedRoute } from './Routes/Unauthed'; import { UnauthedRoute } from './Routes/Unauthed';
import { Helmet } from 'react-helmet';
const User = ({user}) => { const User = ({user}) => {
return ( return (
@ -81,6 +82,10 @@ function App() {
return ( return (
<div className="app"> <div className="app">
<Helmet>
<title>Corgi Corner</title>
</Helmet>
<BrowserRouter> <BrowserRouter>
<header> <header>

View File

@ -46,7 +46,8 @@ const Home = () => {
<p> <p>
I can work with various ...things <br /> I can work with various ...things <br />
I'm most proficient with JS within the Node environment as it's the one I've worked with the longest, I'm most proficient with JS within the Node environment as it's the one I've worked with the longest,
though I can work well within any JS environment now. When working on Node projects I most commonly use MongoDB and MariaDB if needed. Web apis I write using Express. though I can work well within any JS environment now. When working on Node projects I most commonly use MongoDB and MariaDB if needed.
Web APIs I write using Express.
</p> </p>
<p> <p>
@ -58,6 +59,10 @@ const Home = () => {
I can hold my own when using these languages but would not consider myself proficient with them. I can hold my own when using these languages but would not consider myself proficient with them.
</p> </p>
<p>
Honorary mentions to Lua and Python, both of which I can use well but don't really use much in practise.
</p>
<br/> <br/>
<small>I probably forgot something, so chances are this probably isn't everything.</small> <small>I probably forgot something, so chances are this probably isn't everything.</small>

View File

@ -116,6 +116,7 @@ class Client extends EventEmitter {
domain: this.domain domain: this.domain
}, },
secret: env.API_SECRET, secret: env.API_SECRET,
name: `corgiCookie`,
resave: false, resave: false,
saveUninitialized: false, saveUninitialized: false,
store: MongoStore.create({ store: MongoStore.create({