Authify is an innovative Role-Based Access Control (RBAC) platform designed to streamline the process of building and managing permissions.
- Authify features an intuitive web interface for easy authorization management – think ticking a checkbox simple!
- Plus, an easy-to-implement SDK to integrate access control seamlessly into your applications. - https://www.npmjs.com/package/authify
- Node.js version 18.17 or later
- Docker for managing databases and services
Start by cloning the Authify repository into your local environment:
git clone [email protected]:adityamhn/authify.gitWe will use Docker to start your local MongoDB and Redis servers. Go to the directory where you have cloned the repo and run:
docker-compose upNow, launch a new terminal and navigate into the backend directory in the repository:
cd ./backendNow once you are in the backend directory, execute the command below to start the backend server:
# run "npm install" to install all the dependency packages
npm run dev & npm run watchVerify the backend is running by visiting http://127.0.0.1:8080.
Now, launch a new terminal and navigate into the frontend directory in the repository:
cd ./frontendNow once you are in the frontend directory, execute the command below to start the frontend server:
# run "npm install" to install all the dependency packages
npm run devConfirm the frontend is operational by navigating to http://127.0.0.1:3000.
We welcome contributions from the community! If you want to contribute through code or documentation, the Contributing guide is the best place to start. If you have questions, feel free to ask.
Authify is open-sourced under the MIT License. See our LICENSE file for more details.
