Files
doneit-web/readme.md
T
Peter Maquiran 95453befdd Fix
2021-08-13 10:34:22 +01:00

65 lines
1.1 KiB
Markdown

# Gabinete Digital
## Requirements
[node >= 14](https://nodejs.org/download/release/v14.15.0/node-v14.15.0-x86.msi)
## Installation
Use the package manager npm to install dependencies.
```bash
npm ci
npm install
npm install -g @ionic/cli
npm install -g lite-server
npm install -g @angular/cli
npm install -g cordova
npm install -g cordova-res
## Mobile first dependencies
cordova plugin add cordova-plugin-mfp-jsonstore
cordova plugin add cordova-plugin-mfp
## memory leak
set NODE_OPTIONS=--max_old_space_size=10096
```
## Start the development server
```bash
ionic serve
```
## build for production and launch server
```bash
ionic serve build --prod
npm run start
```
## Run test[.](#run-test)
```bash
# incase you don't have .env file
cp ./.env.example ./.env
# incase you don't have a local build yet
ionic serve build --prod
npm run test
```
## Deploy in local network
```bash
ionic build --prod
cp -r ./www ./serve
npm run dev:share
```
## Contributing
For major changes, please open an issue first to discuss what you would like to change.
Please make sure to update tests as appropriate.