Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/itsalb3rt/agile-visitors
Application for registering employee entries with the possibility of generating reports, validating and storing users with minimal effort.
https://github.com/itsalb3rt/agile-visitors
docker hacktoberfest hacktoberfest2020 open-source opensource quasar-framework vue
Last synced: 8 days ago
JSON representation
Application for registering employee entries with the possibility of generating reports, validating and storing users with minimal effort.
- Host: GitHub
- URL: https://github.com/itsalb3rt/agile-visitors
- Owner: itsalb3rt
- License: mit
- Created: 2020-09-26T20:28:02.000Z (about 4 years ago)
- Default Branch: master
- Last Pushed: 2022-07-13T02:05:03.000Z (over 2 years ago)
- Last Synced: 2024-08-02T00:25:45.356Z (3 months ago)
- Topics: docker, hacktoberfest, hacktoberfest2020, open-source, opensource, quasar-framework, vue
- Language: Vue
- Homepage: https://agile-visitors.netlify.app
- Size: 2.49 MB
- Stars: 24
- Watchers: 4
- Forks: 6
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- Contributing: CONTRIBUTING.md
- License: LICENSE
- Code of conduct: CODE_OF_CONDUCT.md
Awesome Lists containing this project
- quasar-awesome - Github - visitors.netlify.app/) | Application for registering employee entries with the possibility of generating reports, validating and storing users with minimal effort. | v1.14.0 | (Awesome Quasar [![Awesome](https://cdn.rawgit.com/sindresorhus/awesome/d7305f38d29fed78fa85652e3a63e154dd8e8829/media/badge.svg)](https://github.com/sindresorhus/awesome) / Tutorials)
README
# Agile visitors :memo:
Application for registering employee entries with the possibility of generating reports, validating and storing users with minimal effort.
## Preview
Desktop
Mobile
# Get Started
The application consists of 2 parts, a **UI** and an **API**.
## API
Go to [API repository](https://github.com/itsalb3rt/agile-visitors-api).
## UI
```bash
$ git clone https://github.com/itsalb3rt/agile-visitors.git
$ cd agile-visitors
```To set the API address you must open the file `quasar.conf.js` and modify the following object.
```javascript
build: {
env: {
API: ctx.dev
? 'http://localhost:5000/api' // Development API
: 'https://agile-visitors-api.gibucket.xyz/api' // Production API
}
}
```## Docker
```bash
$ docker build -t agile-visitors .
``````bash
$ docker run -d --name agile-visitors -p 8081:80 --rm agile-visitors
```We should now be able to access the application on [http://localhost:8081](http://localhost:8081)
## Development
Install all dependencies.
```bash
$ npm install
```Start the app in development mode (hot-code reloading, error reporting, etc.)
```bash
$ quasar dev
```Build the app for production
```bash
$ quasar build
```---
Created with :heart: by [Albert Hidalgo](https://github.com/itsalb3rt) and [Lewandy Dilone](https://github.com/lewandy)