Skip to content
Snippets Groups Projects
user avatar
authored
user avatar
Name Last commit Last update
..
public
src
.env.development
.env.production
.eslintrc.json
README.md
next.config.js
package-lock.json
package.json
tsconfig.json

This is a Next.js project bootstrapped with create-next-app.

Developing

By default the frontend will try to reach the backend at http://localhost:8080/api.

If your local instance is deployed on another URL, create a .env.local file and set the RODOLF_API_URL variable to point to your CubicWeb instance. The .env.local is ignored in Mercurial so you can edit it all you want.

Then run the development server:

npm run dev

Open http://localhost:3000 with your browser to see the result.

Build for production

Create a file .env.production and set the RODOLF_API_URL variable to point to the production CubicWeb instance.

Then build and start the server:

npm run build
npm run start

More information here.