The platform for all your social welfare needs starting from donation to charity events or fundraisers.
Websit link (Live demo) - Click here
Server link - Click here
Pages
Directory Structure
.
├── client/
│ ├── node_modules
│ ├── src/
│ │ ├── assets
│ │ ├── components
│ │ ├── config
│ │ ├── data
│ │ ├── hooks
│ │ ├── pages
│ │ ├── utils
│ │ ├── App.jsx
│ │ ├── App.scss
│ │ ├── index.jsx
│ │ └── *
│ ├── public
│ ├── Dockerfile
│ ├── index.html
│ ├── .dockerignore
│ ├── .env
│ ├── .gitignore
│ └── *
├── server/
│ ├── __tests__
│ ├── config
│ ├── controllers
│ ├── cronjobs
│ ├── events
│ ├── helpers
│ ├── middlewares
│ ├── models
│ ├── routes
│ ├── services
│ ├── templates
│ ├── .dockerignore
│ ├── Dockerfile
│ ├── server.js
│ └── *
├── docker-compose.yaml
├── LICENSE
└── README.md
- Create a fork of this repository
- Clone the repository in your local machine
git clone <url>.git
- Change directory and run npm install in both client and server dir to install the dependencies
npm install
- In the root dir run the following command to start both client and server using docker
docker-compose up -d
- Alternatively, you can run the following command in the individual directories to start the client and server applications
npm run dev
