Skip to content
Snippets Groups Projects
Unverified Commit 37e2ca8d authored by Defendi Alberto's avatar Defendi Alberto
Browse files

Installation instructions

parent 0e1d6f14
No related branches found
No related tags found
1 merge request!3Installation notes + CI integration
......@@ -2,18 +2,36 @@
Dashboard of the service which is used by system administrators
## Fase I
Costruire tutti gli elementi della dashboard utlizzando una libreria css. L'idea è di scrivere il meno css possibile nella fase iniziale in modo tale da avere una versione funzionante del sito in breve tempo.
- Tailwind css
- Bulma
# Used dependencies
## Typescript
Anche se renderà un po' complesso lo sviluppo all'inizio, l'idea è utilizzare typescript perché funziona meglio di JS e abbiamo le competenze per comprenderlo.
## Node installation
### Windows
It is reccomended to use WSL.
Should not be possible, use [this guide](https://docs.microsoft.com/en-us/windows/nodejs/setup-on-windows) to install nvm
### Linux/Macos
```
# Install node version manager
curl -o- https://raw.githubusercontent.com/creationix/nvm/v0.33.0/install.sh | bash
```
## Project installation
```
# Ensure that nvm was installed correctly with
nvm --version # should return the version of nvm installed.
# Install latest version of node
nvm install node
# Use the latest version with
nvm use node
# Install yarn
npm install --global yarn
# Install dependencies
yarn install
# Run project
yarn run
# Further commands are in the package.json under "scripts"
```
## Useful resources
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment