No description
| .storybook | ||
| src | ||
| .dockerignore | ||
| .env.example | ||
| .eslintrc.cjs | ||
| .gitignore | ||
| .prettierrc.json | ||
| .yarnrc.yml | ||
| _template.scss | ||
| docker-compose.yml | ||
| Dockerfile | ||
| Dockerfile-old | ||
| next.config.mjs | ||
| package.json | ||
| README.md | ||
| tsconfig.json | ||
| yarn.lock | ||
Heilige Drei Könige Website
This is the repository for the Heilige Drei Könige Catholic Church website, built using Payload CMS v3, NextJS, React and MongoDB.
Getting Started
Prerequisites
- Node.js and npm: Make sure you have Node.js and npm installed on your machine.
- MongoDB: You'll need a MongoDB database to store the website data.
MongoDB
If you don't have docker on system installed, please follow the instructions for your operating system on the Docker website.
To pull the MongoDB docker image:
docker pull mongodb/mongodb-community-server:latest
To Run the image as a Container
docker run --name mongodb -p 27017:27017 -d mongodb/mongodb-community-server:latest
Environment variables
Please set the environment variables in the .env file
cp .env.example .env
Development server
npm run dev