This repository contains the code for the MIRTE website on https://mirte.org.
In order to build and run both the frontend and backend one needs an installation of NodeJS. We prefer using nodeenv.
sudo apt install -y python3-pip
sudo -H pip install nodeenv
nodeenv --node=22.12.0 node_env
source node_env/bin/activate-
development:
npm install npm run dev
-
local deployment (as mirte.org):
npm install export NUXT_APP_BASE_URL=/ npm run generate python3 -m http.server -d dist # visit http://localhost:8000
-
local deployment (as fork on .github.io/mirte-website):
npm install npm run generate mv dist mirte-website python3 -m http.server # visit http://localhost:8000/mirte-website