- Clone the repository:
git clone https://github.com/code100x/cms.git
- Navigate to the project directory:
cd cms
- Run the following command to start the application:
docker volume create postgres-data # (optional) run this command if you face any mount volume / volume not exist error
docker-compose up
- Clone the repository:
git clone https://github.com/code100x/cms.git
- Navigate to the project directory:
cd cms
- (Optional) Start a PostgreSQL database using Docker:
docker run -d \
--name cms-db \
-e POSTGRES_USER=myuser \
-e POSTGRES_PASSWORD=mypassword \
-e POSTGRES_DB=mydatabase \
-p 5432:5432 \
postgres
The connection URL for this setup will be:
DATABASE_URL=postgresql://myuser:mypassword@localhost:5432/mydatabase?schema=public
- Create a
.env
file based on the.env.example
file and configure theDATABASE_URL
with your PostgreSQL connection string.
cd cms
- (Optional) Start a PostgreSQL database using Docker:
docker run -d \
--name cms-db \
-e POSTGRES_USER=myuser \
-e POSTGRES_PASSWORD=mypassword \
-e POSTGRES_DB=mydatabase \
-p 5432:5432 \
postgres
The connection URL for this setup will be:
DATABASE_URL=postgresql://myuser:mypassword@localhost:5432/mydatabase?schema=public
-
Create a
.env
file based on the.env.example
file and configure theDATABASE_URL
with your PostgreSQL connection string. -
Install dependencies:
pnpm install
- Run database migrations:
pnpm run prisma:migrate
- Seed the database:
pnpm run db:seed
- Start the development server:
pnpm run dev
-
Access the application in your browser at
http://localhost:3000
-
Login using any of the following provided user credentials:
-
Email:
testuser@example.com
, Password:123456
-
Email:
testuser2@example.com
, Password:123456
We welcome contributions from the community! To contribute to CMS, follow these steps:
-
Fork the repository.
-
Create a new branch (
git checkout -b feature/fooBar
). -
Make your changes and commit them (
git commit -am 'Add some fooBar'
).
Before committing, ensure your code is properly formatted and linted:
- Run
npm run lint:check
to check for lint errors
- Run
npm run lint:fix
to automatically fix lint errors
- Run
npm run format:check
to check code formatting
- Run
npm run format:fix
to automatically fix formatting issues
Before committing, ensure your code is properly formatted and linted:
- Run
npm run lint:check
to check for lint errors
- Run
npm run lint:fix
to automatically fix lint errors
- Run
npm run format:check
to check code formatting
- Run
npm run format:fix
to automatically fix formatting issues
-
Push to the branch (
git push origin feature/fooBar
). -
Create a new Pull Request.
For major changes, please open an issue first to discuss what you would like to change.
Read our contribution guidelines for more details.
If you encounter issues on macOS with Silicon chips, you may need to install some additional dependencies. Run the following command:
brew install pkg-config cairo pango libpng jpeg giflib librsvg
If you continue to face issues, please open a GitHub issue with details about the problem you're experiencing.