Application made with Vue 3 using Quasar Framework that contains responsive web interface, PWA and exported in APK using Apache Cordova and capacitor. The application is connected to an API made in Laravel.https://laravel-api-server.up.railway.app
Application made with Vue 3 consists of the creation of a CRUD and authentication system that come from a games API and the development of styles using Quasar Framework. The application made with Vue 3 contains the following functionalities:
- I use the Vue3 version with the composition API.
- Style development with Quasar Framework.
- VUEX.
- AXIOS.
- Keep-alive.
- Vue-router.
- PWA (Progressive Web Apps).
- SPA (Single Page Application).
- Application exported in APK using Apache Cordova.
- Application exported in APK using Capacitor.
- Electron.
- The project contains the files to implement it in Docker.
- Vue-validate.
- Helpers.
- Watchers.
- Props.
- Slots.
- Emits.
- Websockets with Pusher.
- End to end tests with CYPRESS.
- Unit tests with JEST.
- The application is connected to a games API made in Laravel: https://github.com/JAVI-CC/Laravel-API-Server
User: admin@email.com
Password: 12345678
$ yarn && quasar dev -m pwa
$ yarn && quasar build -m pwa
$ yarn && quasar dev -m cordova -T android
$ yarn && quasar build -m cordova -T android
$ yarn && quasar build -m capacitor -T android -d
$ yarn && quasar dev -m electron
$ yarn && quasar build -m electron
1. In your Pusher account create a channel called: juegos-api
2. Enter the file: development.env
3. fill in the following credentials:
PUSHER_APP_KEY={App Keys in the channel juegos-api key}
PUSHER_APP_CLUSTER={App Keys in the channel juegos-api cluster}
1. In your Pusher account create a channel called: juegos-api
2. Enter the file: production.env
3. fill in the following credentials:
PUSHER_APP_KEY={App Keys in the channel juegos-api key}
PUSHER_APP_CLUSTER={App Keys in the channel juegos-api cluster}
$ yarn && [ yarn test:unit || quasar test --unit jest ]
$ yarn && yarn cypress:open
$ git clone https://github.com/JAVI-CC/VUE3-API-client.git
$ cd VUE3-API-client
$ cd VUE3-API-client
$ cp development.env.example development.env
$ cp production.env.example production.env
$ docker-compose up -d
$ docker compose up
It is about creating a new container that contains the application once the build is done on the nginx web server listening on port$ docker compose up -d
$ docker compose exec app quasar build -m pwa
:85->80/tcp
├── vue-quasar-crud-template-app-prod
$ docker compose -f docker-compose.prod.yml up -d
In case you are using your IDE to develop the application and it does not detect the files it contains within the node_modules folder, you have to copy the files from the node_modules folder of the container to the host machine with the following command.
$ docker compose cp app:/src/node_modules .
Once you have the containers deployed, you can access the APP at http://localhost:9000