Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/gibbyb/tech_tracker_web

Tech Tracker is a Next.js Web Application used by COG IT Employees to update their status throughout the day.
https://github.com/gibbyb/tech_tracker_web

authjs nextjs postgresql t3-stack tailwindcss typescript

Last synced: 9 days ago
JSON representation

Tech Tracker is a Next.js Web Application used by COG IT Employees to update their status throughout the day.

Awesome Lists containing this project

README

        




Tech Tracker Logo


Tech Tracker


# [Find Here](https://techtracker.gibbyb.com/)

- Application used by COG employees to update their status & location throughout the day.

How to run:

I'd recommend installing pnpm. Clone the repo, then rename env.example to .env & fill it out.

```bash
mv ./env.example ./.env
```

Run

```bash
pnpm install
```

to install all dependencies.

Feel free to use whichever providers you would like with Auth.js. Outside of changing the logo on the sign in button, you should be able to swap easily. Just ensure you read over the documentation.

Once you have all your environment variables, you can run

```bash
pnpm db:push
```

to automatically push the database schema to your database. You can then run

```bash
pnpm db:studio
```

to get a nice web ui where you can manipulate data in your database. Once your database is set up & you have added your users, you can run

```bash
pnpm dev
```

to start your development environment on port 3000.

For prod, look in the .prod folder. You will find a Dockerfile which when started will always pull any updates before starting with a custom command `pnpm go` which is aliased to `git pull && next build && next start`