Read-only mirror of https://github.com/sitn/sitn_stationnements — Canton de Neuchâtel. Issues & pull requests at the source.
  • JavaScript 68.1%
  • Vue 26%
  • CSS 5.5%
  • Dockerfile 0.3%
  • HTML 0.1%
Find a file
Repository files (latest commit first)
Filename Latest commit message Latest commit date
2026-08-05 14:13:50 +02:00
doc Create template.xlsx 2023-08-21 16:34:59 +02:00
public Update v4 2024-02-29 14:43:40 +01:00
src Updated communes list (Latena fusion) 2025-01-16 15:29:34 +01:00
.dockerignore Squashed commit of the following: 2024-06-19 10:51:33 +02:00
.gitignore Update .gitignore 2023-10-23 10:31:23 +02:00
docker-compose.yml harbor 2025-01-10 15:30:51 +01:00
Dockerfile Security updates and cleanup 2026-08-05 14:13:50 +02:00
httpd.conf Security updates and cleanup 2026-08-05 14:13:50 +02:00
index.html remove s 2023-10-17 15:37:54 +02:00
LICENSE dockerize 2023-10-17 15:06:23 +02:00
package-lock.json Security updates and cleanup 2026-08-05 14:13:50 +02:00
package.json Security updates and cleanup 2026-08-05 14:13:50 +02:00
README.md harbor 2025-01-10 15:30:51 +01:00
vite.config.js Security updates and cleanup 2026-08-05 14:13:50 +02:00

SITN Stationnements

About

This app is used to compute the number of car parkings in construction projects.

Getting started

Start a terminal (e.g. Windows PowerShell)

Install Vite globally using npm:

npm i vite -g

Set the working directory to the project directory (sitn_stationnements)

Build the app with:

vite build

Run the app locally (on localhost) with:

vite

Docker deployment

To just build locally:

docker compose build

To build and run locally:

docker compose up -d --build 

To build and run on remote server:

Set the DOCKER_HOST environment variable and launch the build/run :

docker compose build
docker compose push
$env:DOCKER_HOST="<PATH_TO_REMOTE_HOST>"
docker compose pull
docker compose up -d