Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/jamastek/sen

Sen.js: The modern Next.js & GraphQL boilerplate
https://github.com/jamastek/sen

apollographql boilerplate graphql nexus prisma tailwindcss typescript

Last synced: about 2 months ago
JSON representation

Sen.js: The modern Next.js & GraphQL boilerplate

Awesome Lists containing this project

README

        

## Features
- ✅ Next.js
- ✅ Tailwindcss
- ✅ Typescript
- ✅ Apollo GraphQL
- ✅ Prisma
- ✅ Nexus
- ✅ Stitches
- ✅ Framer Motion
- ✅ React Hook Form
- ✅ Storybookjs
- ✅ React Testing Library
- ✅ React Icons

## Installation

Install sen.js with yarn or npm

```bash
git clone https://github.com/jamastek/senja.git my-app
cd my-app
yarn install
```

Run the development server:

```bash
yarn dev
# or
npm run dev
```

Open [http://localhost:3000](http://localhost:3000) with your browser to see the result.

You can start editing the page by modifying `pages/index.js`. The page auto-updates as you edit the file.

## Structures

```text
nextjs-boilerplate
├── apollo
│ ├── models
│ │ └── index.ts
│ ├── mutations
│ │ └── index.ts
│ ├── queries
│ │ └── index.ts
│ ├── states
│ │ └── index.ts
│ ├── cache.ts
│ ├── client.ts
├── components
│ ├── button
│ │ └── index.ts
├── containers
│ ├── layout
│ │ └── index.ts
├── pages
│ ├── api
│ │ └── graphql
│ │ └── index.ts
│ ├── index.ts
├── prisma
│ ├── client #prisma-client
│ │ └── index.ts
│ ├── migrations #prisma migration
│ │ └── index.ts
│ ├── generated #nexus generate
│ │ └── nexus-typegen.ts
│ │ ├── schema.graphql
│ ├── nexus
│ │ ├── schema
│ │ │ ├── _migrations.ts
│ │ │ ├── _queries.ts
│ │ │ ├── post.ts
│ │ └── index.ts
│ ├── schema.prisma
│ ├── schema.ts
├── public
├── styles
│ ├── global.css
├── .gitignore
├── next-env.d.ts
├── next.config.js
├── postcss.config.js
├── tailwind.config.js
├── tsconfig.json
├── LICENSE
└── package.json
```

## Environment Variables

To run this project, you will need to add the following environment variables to your .env file

`DATABASE_URL=mysql://example:example@localhost:3306/db_name`

`API_URL=/api/graphql`

`NEXT_PUBLIC_API_URL="/api/graphql"`

`JWT_SECRET=example_jwt`

`APOLLO_KEY=service:example123`

`APOLLO_GRAPH_VARIANT=current`

`APOLLO_SCHEMA_REPORTING=true`

## Learn More

To learn more about Next.js, take a look at the following resources:

- [Next.js Documentation](https://nextjs.org/docs) - learn about Next.js features and API.
- [Learn Next.js](https://nextjs.org/learn) - an interactive Next.js tutorial.
- [Learn Apollo GraphQL](https://www.apollographql.com/)
- [Learn Nexus](https://nexusjs.org/)
- [Learn Prisma](https://www.prisma.io/)
- [Learn Styled Components](https://styled-components.com/)
- [Learn Typescript](https://www.typescriptlang.org/)

You can check out [the Next.js GitHub repository](https://github.com/vercel/next.js/) - your feedback and contributions are welcome!

## Deploy on Vercel

The easiest way to deploy your Next.js app is to use the [Vercel Platform](https://vercel.com/import?utm_medium=default-template&filter=next.js&utm_source=create-next-app&utm_campaign=create-next-app-readme) from the creators of Next.js.

Check out our [Next.js deployment documentation](https://nextjs.org/docs/deployment) for more details.