Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/hack4impact/nextjs-base

A NextJS boilerplate repo with authentication, SCSS, and other essentials already baked in.
https://github.com/hack4impact/nextjs-base

nextjs nextjs-boilerplate

Last synced: 26 days ago
JSON representation

A NextJS boilerplate repo with authentication, SCSS, and other essentials already baked in.

Awesome Lists containing this project

README

        

# nextjs-base
A NextJS boilerplate repo with authentication already baked in.

## Local Development
Out of the box, this full stack web application template has the functionality and views to sign users up, log users in, and track sessions. The only configuration that is required to get this working is to register your own MongoDB instance on a cloud provider of your choice, and then to register the database credentials locally.

I recommend https://cloud.mongodb.com/ as a cloud provider of choice for hobby MongoDB databases.

After creating a database, find the mongodb srv connection string to connect to your database.

Then, replace `` in the `sample.env.local` file in the root directory with your connection string. Replace `` with the name of the database you setup. Finally, rename `sample.env.local` to `env.local`.

Now, the application should be fully operational. Run it in development mode with the command `npm run dev`.

## Docs
See https://github.com/hack4impact/nextjs-base/wiki/Getting-Started for more documentation.