From 2807e841ca0fcc2fc46b5a4a7d58ecf52590369b Mon Sep 17 00:00:00 2001 From: Migushthe2nd <ihaverkamp@live.nl> Date: Fri, 22 Oct 2021 01:13:52 +0200 Subject: [PATCH] Add proper README.md --- README.md | 55 ++++++++++++++++++++++++++++++++++++++++++++++++++++--- 1 file changed, 52 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 7e8a825..f72c978 100644 --- a/README.md +++ b/README.md @@ -1,11 +1,36 @@ # HydroMinderApp -## Build Setup +<div align="center"> + <p align="center"> + <img src="https://i.imgur.com/uBzEyGT.png" width="256" alt="HydroMinder Logo" /> + </p> + + <h1 align="center">HydroMinder Web App</h1> + <p align="center">A modern hydration tracker for anyone.</p> +</div> + +## Description + +This is the Web Application. + +## Development Requirements + +- NodeJS 16.X +- Yarn Package Manager + +## Installation ```bash -# install dependencies -$ yarn install +$ yarn +``` + +## Running the app + +Make sure to make a copy of the `.env.example` file as `.env`. The default values will work for development. +For development, it is recommended to also run the [HydroMinder API](https://gitlab.utwente.nl/cs21-32/hydrominder_api). + +```bash # serve with hot reload at localhost:3000 $ yarn dev @@ -18,3 +43,27 @@ $ yarn generate ``` For detailed explanation on how things work, check out [Nuxt.js docs](https://nuxtjs.org). + +## Test + +```bash +# unit tests +$ yarn run test +``` + +## Publish New Container + +```bash +# Login to the registry +docker login registry.gitlab.utwente.nl + +# Build with tag 'latest' by default +docker build . --platform linux/arm32/v7 -t registry.gitlab.utwente.nl/cs21-32/hydrominder_app + +# Push release +docker push registry.gitlab.utwente.nl/cs21-32/hydrominder_app +``` + +## License + +HydroMinder Web App is [MIT licensed](LICENSE). -- GitLab