This project is a Jira clone built with modern technologies like Next.js 15, Hono, and an elegant user interface using Tailwind CSS and Radix UI.
Frontend:
Backend:
Authentication:
git clone https://github.com/your-username/build-jira-clone.git
cd build-jira-clone
npm install
# or
yarn install
.env
file in the project root:# Required environment variables
NEXT_PUBLIC_API_URL=http://localhost:3000
# Development
npm run dev
# Production
npm run build
npm start
build-jira-clone/
āāā app/
ā āāā (auth)/
ā ā āāā sign-in/
ā ā āāā sign-up/
ā āāā api/
ā āāā layout.tsx
āāā components/
ā āāā ui/
ā āāā dotted-separator.tsx
āāā features/
ā āāā auth/
āāā lib/
ā āāā utils.ts
āāā public/
The system includes:
The project uses a custom component library based on Radix UI and Tailwind CSS:
The API is built with Hono and integrates with Next.js:
import { Hono } from "hono";
import { handle } from "hono/vercel";
const app = new Hono();
app.get("/", (c) => {
return c.json({ message: "Hello World" });
});
export const GET = handle(app);
The project is under active development with new features being added regularly.
This project is licensed under the MIT License.
Contributions are welcome. Please follow these steps:
git checkout -b feature/AmazingFeature
)git commit -m 'Add some AmazingFeature'
)git push origin feature/AmazingFeature
)If you have any questions or issues, please open an issue in the repository.
Made with ā¤ļø by Epsaind dev