To organize and maintain a clean, scalable codebase for the Amora Book Keeping MVP app, following well-defined script organization and code conventions.
Develop a user-friendly financial control system using Google Sheets and Google Apps Script to manage Amora Kids' finances effectively. The system will track fixed bills, catalog renewals, daily sales, investments, and provide monthly summaries with an emphasis on brand-aligned design and interactivity.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| "configVersion": "0.0.1", | |
| "currencyInfo":[ { | |
| "currencyCode": "USD", | |
| "countryCode": "US", | |
| "priority": 1, | |
| "flag": "🇺🇸" | |
| }, | |
| { | |
| "currencyCode": "EUR", |
- Nome do Projeto: [Nome do Projeto]
- Objetivo: Desenvolver um aplicativo móvel para melhorar a inclusão digital, a segurança pública e a prestação de serviços na cidade através de um feed moderado e uma interface CRM integrada.
- Feed Moderado da Cidade
- Um feed principal gerenciado pelas autoridades da cidade.
- Postagens incluem atualizações importantes, anúncios de serviços públicos e relatórios de cidadãos verificados.
- Usuários podem enviar problemas e relatórios para revisão das autoridades da cidade e possível inclusão no feed.
The Bedtime Quotes App is designed to help users wind down before bed by providing personalized quotes with background images. This MVP focuses on delivering a simple yet effective user experience that encourages a relaxing bedtime routine.
- Provide users with personalized quotes and background images.
- Gather user preferences during onboarding to tailor content.
- Apple Developer Enterprise Program: Ensure your organization is enrolled in the Apple Developer Enterprise Program.
- Xcode: Ensure you have Xcode installed.
- iOS Device: An iOS device for testing.
- Create an Enterprise Distribution Certificate:
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // DRIVER RATINGS LOGICS | |
| //SETUPS | |
| // this class exists to get data from SPRINT RACE and calculate DRIVER RATINGS | |
| let RATING_DATA = SpreadsheetApp.getActive().getSheetByName("RATING_DATA") | |
| let IRC_DATA_SHEET = SpreadsheetApp.openById("1QaQUnQSiL_bKDY7zdCNp458fmDe8cS6N7taMem-b654") | |
| let DRIVER_DATA = IRC_DATA_SHEET.getSheetByName("DRIVER_DATA") | |
| // PROPERTIES | |
| // max xp limit to regular |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /** | |
| * | |
| */ | |
| // create new ticket on sheets | |
| function createTicketOnFormSubmit() { | |
| let AMERICA_DATA_MANAGER_SHEET_URL = 'https://docs.google.com/spreadsheets/d/1QPGwyDBDvvw0lfHzBIzgZDtTfinFmm7i5F6Kmrxs3M4/edit#gid=639319822' | |
| let SATURDAY_EU_DATA_MANAGER_SHEET_URL = '' | |
| let SUNDAY_EU_DATA_MANAGER_SHEET_URL = '' | |
| var formValues = [] |
NewerOlder