Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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.
- Host: GitHub
- URL: https://github.com/hack4impact/nextjs-base
- Owner: hack4impact
- Created: 2020-10-19T22:30:11.000Z (about 4 years ago)
- Default Branch: master
- Last Pushed: 2021-05-13T21:21:06.000Z (over 3 years ago)
- Last Synced: 2024-08-13T07:17:59.935Z (4 months ago)
- Topics: nextjs, nextjs-boilerplate
- Language: TypeScript
- Homepage: https://nextjsbase.vercel.app/
- Size: 558 KB
- Stars: 5
- Watchers: 3
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
- jimsghstars - hack4impact/nextjs-base - A NextJS boilerplate repo with authentication, SCSS, and other essentials already baked in. (TypeScript)
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.