feat: remove postgres & use a single docker container

This commit is contained in:
Elias Schneider
2022-10-11 22:30:06 +02:00
parent e2b3e6a1e8
commit 388ac395ba
18 changed files with 349 additions and 274 deletions

View File

@@ -91,6 +91,6 @@ export default App;
App.getInitialProps = ({ ctx }: { ctx: GetServerSidePropsContext }) => {
return {
colorScheme: getCookie("color-schema", ctx) || "light",
colorScheme: getCookie("color-schema") || "light",
};
};