Open source repo for app.100xdevs.com
[!NOTE]
This project uses pnpm only as a package manager.
git clone https://github.com/code100x/cms.git
cd cms
[!NOTE]
Your Docker Demon should be online
# Gives permission to execute a setup file
chmod +x setup.sh
# Runs the setup script file
./setup.sh
(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
Create a .env file:
Copy .env.example and rename it to .env.
Install dependencies:
pnpm install
pnpm prisma:migrate
pnpm prisma generate
pnpm db:seed
pnpm dev
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! There are many ways to contribute to the CMS. Code is just one possible means of contribution.
Clone the fork to your local machine:
git clone https://github.com/<your username>/cms.git
cd cms
git checkout -b feature/fooBar
git commit -am 'Add some fooBar'
git push origin feature/fooBar
For major changes, please open an issue first to discuss what you would like to change.
Read our contribution guidelines for more details.