Want to debug the elusive issues developers run into in the terminal? Adopt T-Error and analyze every single std error output your team encounters on our modern web dashboard! Built with Next.js, TypeScript, and Material-UI on the frontend, and powered by Express on the backend. T-Error is the future of project management, from weekend hackathon projects to enterprise-level software.
- Seamless terminal integration, run one script and start tracking your errors! 🚀
- Data visualization of the error trends, which commands are screwing up the devs? 📊
- Solution database - find the solution to your error, right through your terminal! ✅
You can view a live demo of the project here.
-
Clone the repository:
git clone https://github.com/PratikPaudel/your-repo.git cd your-repo
-
Set up environment variables: Create a
.env.local
file in the root directory. Obtain your MongoDB connection details and API key, then add the following line to the.env.local
file:NEXT_PUBLIC_API_URL=http://localhost:3001
-
Set up the backend: Navigate to the backend directory and install the required dependencies:
cd ./backend npm install
Start the Express server:
node index.js
-
Set up the frontend: Navigate to the frontend directory, install the dependencies, and start the application:
cd ../frontend npm install npm run dev
- Open your browser and navigate to
http://localhost:3000
.