This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import logo from './logo.svg'; | |
import './App.css'; | |
import CookieConsent from './components/CookieConsent'; | |
function App() { | |
let currentLocale = 'sv'; | |
return ( | |
<div className="App"> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
MAIL_DRIVER=smtp | |
MAIL_HOST=mailhog | |
MAIL_PORT=1025 | |
MAIL_USERNAME=null | |
MAIL_PASSWORD=null | |
MAIL_ENCRYPTION=null |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# .env | |
MAILTRAP_USER="<Mailtrap SMTP username>" | |
MAILTRAP_PASS="<Mailtrap SMTP password>" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"Loop": { | |
"prefix": ["loop", "ssloop"], | |
"body": ["<% loop $${1:itterable} %>", "\t$0", "<% end_loop %>"], | |
"description": "Silverstripe template loop" | |
}, | |
"With": { | |
"prefix": ["with", "sswith"], | |
"body": ["<% with $${1:object} %>", "\t$0", "<% end_with %>"], | |
"description": "Silverstripe with" |