A landing page (portal) for datafabrikken på datafabrikken.norge.no
- Required tools to run this project:
- Node.js and npm to run locally on a host machine
- Docker and Docker Compose to run locally in a container
- Install dependencies by running
npm install
- Run
npm start
to start local development server
- Build a Docker container using the following command:
docker build -t datafabrikken-portal .
- Run the container using the following comand:
docker run -d -p 3000:8080 -t datafabrikken-portal
- Run the application using the following command:
docker-compose up -d
ENV
- Environment namespacedevelopment
production
Whenever a new change is to be implemented, follow these steps:
- Create a new branch from the master branch
- Implement and commit changes
- Create a pull request for code review
This repository uses conventional commmit format. In order to commit, follow these steps:
- Stage files to be committed
- Run
npm run commit
script
Do not use --no-verify
flag when making commits.