Skip to content

rodgav/appwrite_incidence

Repository files navigation

Incidence app - Admin

project presented by Rodolfo Samuel Gavilan Muñoz for the appwrite hackathon.

  • clean architecture
  • MVVM
  • Responsive (mobile and web)
  • internationalization (es-en)

Get starting

  • appwrite v.0.13.4
  • flutter v.2.10.3
  1. clone projects.

  2. add the bundle ID to your appwrite project

  3. create collections and attributes

    • collections permissions Document level

    incidences

    attributeId type
    name string required
    description string required
    date_create string required
    image string required
    priority string required
    area string required
    employe string required
    supervisor string required
    solution string required
    date_solution string required
    active boolean required

    areas

    attributeId type
    name string required
    description string required

    users

    attributeId type
    name string required
    area string required
    active boolean required
    type_user string required

    prioritys

    attributeId type
    name string required

    type_users

    attributeId type
    name string required
  4. create indexes

    incidences

    attributeId type attributes
    area key area(asc)
    area_priority key area(asc), priority(asc)
    area_priority_active key area(asc), priority(asc), active(asc)
    employe key employe(asc)
    employe_active key employe(asc), active(asc)
    search fulltext name(asc)

    areas

    attributeId type attributes
    search fulltext name(asc)

    users

    attributeId type attributes
    typeUser key type_user(asc)
    typeUser_area key type_user(asc),area(asc)
    typeUser_area_active key type_user(asc),area(asc),active(asc)
    search fulltext name(asc)
  5. create documents

    prioritys

    • Baja, Media, Alta

    type_users

    • Employe, Supervisor
  6. create bucket images

    • bucket permissions File level
  7. edit the filename constants.example.dart to constants.dart, fill in your details. the file is located in project/lib/app/constants.example.

Description

The objective of this project is to facilitate the creation and solution of incidents or incidents that occur within a company or business.

This project is a part of a complete project.

Contains:

  • login and forgot password

Functions:

  • create and edit incidences.
  • create and edit areas.
  • create and edit users.

Screenshots

admin1 admin2 admin3 login forgotPassword mainIncidences mainAreas mainUsers mainIncidences-newIncidence1 mainIncidences-newIncidence2 mainIncidences-editIncidence1 mainIncidences-editIncidence2 mainAreas-editArea mainAreas-newArea mainUsers-updateUser mainUsers-newUser changeLanguage detailsUser mainIncidences-search mainAreas-search mainUsers-search

Attribution of graphic elements used in the project:

open source projects used

Docs

License

MIT License

Copyright (c) 2022 Rodolfo Samuel Gavilan Muñoz

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

About

No description, website, or topics provided.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published