From 45ab5a8d4a6497d86ffb9c92d00197b9c2018b42 Mon Sep 17 00:00:00 2001 From: Prakhar Shukla Date: Mon, 15 Feb 2021 22:38:19 +0530 Subject: [PATCH 01/11] Update README.md --- README.md | 44 +++++++++++++++++++++++++++++++------------- 1 file changed, 31 insertions(+), 13 deletions(-) diff --git a/README.md b/README.md index b6f3e9f..6903d65 100644 --- a/README.md +++ b/README.md @@ -1,20 +1,38 @@ -# andronix-website-base +

+ andronix-internal-api +

-## Build Setup +

+ + + +

-```bash -# install dependencies -$ npm install +## What is this? ⚡ +This is the repository of the official website for [Andronix App](https://git.andronix.app). This combines billing for the digital products that Andronix offers and Andronix Commands. -# serve with hot reload at localhost:3000 -$ npm run dev +> Andronix Commands will be added soon to this repo. It currently resides on [here](https://web.andronix.app) and is build with just VueJS and Tailwind. -# build for production and launch server -$ npm run build -$ npm run start +## What is the Tech-Stack? 📐 -# generate static project -$ npm run generate +This website/web-app is built using [NuxtJS](https://nuxtjs.org) and [Tailwind](https://tailwindcss.com). Deployed on [Netlify](https://netlify.com) and uses [GitHub Actions](https://github.com/features/actions) for the app pipeline. + +### - Testing 🤖 +We use [Cypress](https://cypress.io) for our E2E automated tests. Our unit and integration tests are done through [Mocha](https://mochajs.org) and [Chai](https://www.chaijs.com). + +## Developer Notes + +### How to run it locally? 🏠 +Clone the project and assuming that you have NodeJS installed on your machine already, run - +``` bash +# yarn +yarn run dev # for the development server. +yarn run generate # for the production build. + +# npm +npm run dev # for the development server. +npm run generate # for the production build. ``` -For detailed explanation on how things work, check out [Nuxt.js docs](https://nuxtjs.org). +### How do I contribute? 🏗 +If you want to improve something or maybe add something new, you can just send a pull request and if that's something that we would like to add/change, we'll be more than happy to merge it. From 6769e3acedc65c663d40f1d71cd7d0a911728490 Mon Sep 17 00:00:00 2001 From: Prakhar Shukla Date: Fri, 15 Oct 2021 23:47:10 +0530 Subject: [PATCH 02/11] added FOSS header to the landing page. --- components/landing/landingHeader.vue | 46 ++++++++++++++++++++++++++++ layouts/default.vue | 1 + 2 files changed, 47 insertions(+) create mode 100644 components/landing/landingHeader.vue diff --git a/components/landing/landingHeader.vue b/components/landing/landingHeader.vue new file mode 100644 index 0000000..50791dc --- /dev/null +++ b/components/landing/landingHeader.vue @@ -0,0 +1,46 @@ + + + + + diff --git a/layouts/default.vue b/layouts/default.vue index 5264d9a..5778f9d 100644 --- a/layouts/default.vue +++ b/layouts/default.vue @@ -1,5 +1,6 @@