- Session
- Sign up/Sign in/Sign out
- Profile picture, name, bio, email
- Edit profile
- Email verification
- Password change
- Password reset
- Other user profile
- Posting
- PM?
Have any features that interest you, make an issue. Would like to work on a feature, make a PR.
This project uses the following dependencies:
next.js
- v9.3 or above required for API Routes and new new data fetching method.react
- v16.8 or above required for react hooks.react-dom
- v16.8 or above.swr
- required for state managementmongodb
- may be replaced bymongoose
.passport
,passport-local
- required after #39 for authenticationnext-connect
- recommended if you want to use Express/Connect middleware and easier method routing.express-session
,connect-mongo
- required for session, may be replaced with other session libraries such ascookie-session
ornext-iron-session
.bcryptjs
- optional, may be replaced with any password-hashing library.argon2
recommended.validator
- optional but recommended.multer
- may be replaced with any middleware that handlesmultipart/form-data
cloudinary
- optional, only if you are using Cloudinary for image upload.@sendgrid/mail
- optional, only if you are using SendGrid to send emails.
The environment variables will be inlined during build time and thus should not be used in front-end codebase.
Required environmental variables in this project include:
process.env.MONGODB_URI
The MongoDB Connection String (with credentials)process.env.EMAIL_FROM
The email address to send your emails from.process.env.DB_NAME
The name of the MongoDB database to be used.process.env.WEB_URI
The URL of your web.process.env.SESSION_SECRET
(only if you useexpress-session
) The secret to be used inexpress-session
.process.env.CLOUDINARY_URL
(optional, Cloudinary only) Cloudinary environment variable for configuration. See this.process.env.SENDGRID_API_KEY
(optional, SendGrid only) SendGrid API Key. See this.
Start the development server by running yarn dev
or npm run dev
. The project supports using .env
. Getting started by create a .env
file with the above variables.
I include my own MongoDB, Cloudinary, SendGrid environment variables in .env.example for experimentation purposes. Please replace them with your owns and refrain from sabotaging them. You can try them in development by renaming it into .env
.
In production, it is recommended to set the environment variables using the options provided by your cloud/hosting providers. Do not use or commit .env
.
Please see my contributing.md.