You can see it running at https://auth-starter.now.sh
To get started, just clone the repository and run npm install && npm run dev
:
git clone https://github.com/Radrw/auth-starter.git
npm install
npm run dev
Note: If you are running on Windows run install --noptional flag (i.e. npm install --no-optional
) which will skip installing fsevents.
If you wanted to run this site in production, you should install modules then build the site with npm run build
and run it with npm start
:
npm install
npm run build
npm start
You should run npm run build
again any time you make changes to the site.
Note: If you are already running a webserver on port 80 (e.g. Macs usually have the Apache webserver running on port 80) you can still start the example in production mode by passing a different port as an Environment Variable when starting (e.g. PORT=3000 npm start
).
If you configure a .env file (just copy .env.default over to '.env' and fill in the options) you can configure a range of options.
See the AUTHENTICATION.md for how to set up oAuth if you want to do that. It suggested you start with Twitter as it's the easiest to get working.
Style formatting is enforced with the JavaScript style linter xo which is invoked when running npm test
.
Reflecting how most examples of Next.js are written, in package.json
we have configured 'xo' to tell it this project uses spaces (not tabs) in both JavaScript and JSX and to not use semicolons.
xo needs to be installed globally:
install -g xo
You can check linting by running xo
or by running npm test
.
Note: There are currently no application specific tests, beyond style checking.