This is a website intended to serve as a hub for the Dan's Plugins Community.
The website is currently hosted at https://dansplugins.com.
If you would like to contribute to the website, you can do so by forking the repository and submitting a pull request. If you are not familiar with how to do this, you can follow the steps below:
- Fork the repository
- Clone the repository to your local machine
- Make your changes
- Commit your changes
- Push your changes to your fork
- Submit a pull request
To compile the project, you will need to have Node.js installed. Once you have Node.js installed, you can run the following commands in the project directory:
npm install
npm run build
Once the project is compiled, you can run the project by running the following command in the project directory:
npm run start
Alternatively, you could execute the build_and_run.sh
script in the project directory:
./build_and_run.sh
This script will compile the project and then run it.
The website can be run in a Docker container. To do this, you can run the following commands in the project directory:
docker build -t dpc-website .
docker run -p 3000:3000 dpc-website
To stop the Docker container, you can run the following command in the project directory:
docker stop dpc-website
The website can also be run in a Docker container using Docker Compose. To do this, you can run the following command in the project directory:
docker-compose up
Alternatively, you could execute the up.sh
script in the project directory:
./up.sh
To stop the Docker container, you can run the following command in the project directory:
docker-compose down
Alternatively, you could execute the down.sh
script in the project directory:
./down.sh
This is a Next.js project bootstrapped with create-next-app
.
To learn more about Next.js, take a look at the following resources:
- Next.js Documentation - learn about Next.js features and API.
- Learn Next.js - an interactive Next.js tutorial.