Novaship es una aplicación web para la gestión de pasantías, orfetas de trabajo y proyectos.
- Next.js
- Prisma
- React
- TypeScript
- TailwindCSS
- DaisyUI
- Clonar el repositorio:
git clone git@github.com:esteban-florez/novaship
- Configurar la base de datos en las variables de entorno (.env):
BASE_URL='http://localhost:3000'
POSTGRES_URL_NON_POOLING='postgresql://postgres:password@localhost:5432/novaship'
POSTGRES_PRISMA_URL='postgresql://postgres:password@localhost:5432/novaship'
STORAGE_METHOD='filesystem'
- Ejecutar las migraciones y seeders de Prisma con el comando:
npm run mig
- Ejecutar el servidor de desarrollo:
npm run dev