BOUNDLESS CODERS is an open source project that aims to help you become a better software engineer and find cool work through coding challenges and contributions to other developers' projects.
- Next.js 14.0
- TypeScript
- Carbon Design System
- Sass preprocessor
- Postgresql as SGBD
- Install Node.js which includes Node Package Manager
# clone this repository
git clone https://github.com/orlando-guy/boundless-coders
# cd to your project_directory
cd project_directory
# then install dependencies
npm install
# or
yarn install
# or
pnpm install
# or
bun installpopulate the database:
# migrate models
npx prisma migrate dev --name migration_name
# populate the database with fake data coming from prisma/seed.ts
npx prisma db seedrun the development server:
npm run dev
# or
yarn dev
# or
pnpm dev
# or
bun devOpen http://localhost:3000 with your browser to see the result.
DATABASE_URL (required)
Access url to allow prisma to communicate with your database
