├── .gitignore ├── 404.html ├── CNAME ├── Gemfile ├── Gemfile.lock ├── README.md ├── _backup ├── en │ ├── admin │ │ ├── configuration.md │ │ ├── getting-started │ │ │ ├── dispatch.md │ │ │ ├── index.md │ │ │ ├── orders.md │ │ │ ├── package-set.md │ │ │ ├── pricing.md │ │ │ └── time-slots.md │ │ ├── index.md │ │ ├── key-concepts.md │ │ ├── orders.md │ │ ├── stores.md │ │ ├── stripe-payments.md │ │ ├── users.md │ │ └── users │ │ │ ├── admin-account.md │ │ │ ├── courier-account.md │ │ │ ├── customer-account.md │ │ │ ├── index.md │ │ │ ├── restaurant-account │ │ │ ├── creating-restaurant.md │ │ │ └── index.md │ │ │ └── store-account │ │ │ ├── creating-store.md │ │ │ └── index.md │ ├── app │ │ ├── index.md │ │ ├── installation.md │ │ ├── order-management.md │ │ └── task-management.md │ ├── courier │ │ ├── app-tutorial.md │ │ └── index.md │ ├── developer │ │ ├── api.md │ │ ├── api │ │ │ └── deliveries.md │ │ ├── index.md │ │ └── stripe.md │ ├── index.md │ ├── payment-portals │ │ ├── about-stripe.md │ │ └── index.md │ ├── plugins │ │ ├── index.md │ │ └── woocommerce.md │ └── restaurant │ │ ├── bluetooth-printers.md │ │ ├── connecting-stripe.md │ │ ├── create-restaurant.md │ │ ├── index.md │ │ ├── restaurant-information.md │ │ └── restaurant-management.md ├── fr │ ├── administrateur │ │ ├── actions │ │ │ ├── index.md │ │ │ ├── livraisons.md │ │ │ ├── tableau-de-bord.md │ │ │ └── tarifications.md │ │ ├── commandes.md │ │ ├── concepts-cles.md │ │ ├── configuration.md │ │ ├── index.md │ │ ├── magasins.md │ │ ├── paiements-stripe.md │ │ └── utilisateurs.md │ ├── application │ │ ├── gestion-des-commandes.md │ │ ├── gestion-des-taches.md │ │ ├── imprimantes-bluetooth.md │ │ ├── index.md │ │ └── installation.md │ ├── developpeur │ │ ├── api.md │ │ ├── index.md │ │ └── livraisons.md │ ├── guides │ │ └── organiser-une-initiative-solidaire.md │ ├── index.md │ ├── restaurants │ │ ├── creation-restaurant.md │ │ ├── gerer-un-restaurant.md │ │ ├── index.md │ │ └── restaurant.md │ └── tutoriels │ │ ├── index.md │ │ └── zones.md └── pt-BR │ ├── admin │ ├── actions │ │ ├── index.md │ │ ├── intervalos-tempo.md │ │ ├── pacotes.md │ │ ├── painel-controle.md │ │ ├── pedidos.md │ │ └── precos.md │ ├── conceitos-chave.md │ ├── configuracao.md │ ├── index.md │ ├── lojas.md │ ├── pagamento-stripe.md │ ├── pedidos.md │ ├── users │ │ ├── conta-administrador.md │ │ ├── conta-cliente.md │ │ ├── conta-loja │ │ │ ├── criar-loja.md │ │ │ └── index.md │ │ ├── conta-mensageiro.md │ │ ├── conta-restaurante │ │ │ ├── criar-restaurante.md │ │ │ └── index.md │ │ └── index.md │ └── usuarios.md │ ├── app │ ├── administracao-entregas.md │ ├── administracao-tarefas.md │ ├── index.md │ └── instalacao.md │ ├── cliente │ └── index.md │ ├── developer │ ├── api.md │ └── index.md │ ├── entregador │ ├── guia-app.md │ └── index.md │ ├── index.md │ ├── plugins │ ├── index.md │ └── woocommerce.md │ ├── restaurantes │ ├── administracao-restaurante.md │ ├── criar-restaurante.md │ ├── impressoras-bluetooth.md │ ├── index.md │ └── informacoes-restaurante.md │ └── tutorials │ ├── index.md │ └── zones.md ├── _config.yml ├── _data ├── common.yml ├── langs.yml └── roles.yml ├── _includes ├── head_custom.html ├── langs.html ├── scripts.html ├── sidebar_footer.html └── title.html ├── _sass ├── custom │ └── custom.scss ├── font-awesome.scss ├── layout.scss ├── navigation.scss └── overrides.scss ├── _translations ├── en.po ├── en │ ├── admin │ │ ├── configuration.po │ │ ├── getting-started │ │ │ ├── dispatch.po │ │ │ ├── index.po │ │ │ ├── orders.po │ │ │ ├── package-set.po │ │ │ ├── pricing.po │ │ │ └── time-slots.po │ │ ├── index.po │ │ ├── key-concepts.po │ │ ├── orders.po │ │ ├── stores.po │ │ ├── stripe-payments.po │ │ ├── users.po │ │ └── users │ │ │ ├── admin-account.po │ │ │ ├── courier-account.po │ │ │ ├── customer-account.po │ │ │ ├── index.po │ │ │ ├── restaurant-account │ │ │ ├── creating-restaurant.po │ │ │ └── index.po │ │ │ └── store-account │ │ │ ├── creating-store.po │ │ │ └── index.po │ ├── app │ │ ├── index.po │ │ ├── installation.po │ │ ├── order-management.po │ │ └── task-management.po │ ├── courier │ │ ├── app-tutorial.po │ │ └── index.po │ ├── developer │ │ ├── api.po │ │ ├── api │ │ │ └── deliveries.po │ │ ├── index.po │ │ └── stripe.po │ ├── index.po │ ├── payment-portals │ │ ├── about-stripe.po │ │ └── index.po │ ├── plugins │ │ ├── index.po │ │ └── woocommerce.po │ ├── restaurant │ │ ├── bluetooth-printers.po │ │ ├── connecting-stripe.po │ │ ├── create-restaurant.po │ │ ├── index.po │ │ ├── restaurant-information.po │ │ └── restaurant-management.po │ └── tutorials │ │ ├── index.po │ │ └── zones.po └── fr.po ├── admin ├── config.yml └── index.html ├── assets ├── fonts │ ├── fontawesome-webfont.eot │ ├── fontawesome-webfont.ttf │ ├── fontawesome-webfont.woff │ └── fontawesome-webfont.woff2 ├── images │ ├── 001TESTmodeConfigSettings.png │ ├── 002TESTmodeToggleOffStripeLive.png │ ├── 003TESTmodePlatformDisabledNonAdminUser.png │ ├── 004TESTmodeToggleOffMaintenanceMode.png │ ├── 2020-11-07-18-21-42.png │ ├── 2020-11-07-20-15-52.png │ ├── 2020-11-07-20-18-53.png │ ├── 2020-11-07-20-21-25.png │ ├── ASAPTimesCart.png │ ├── ASAPTimesPopup.png │ ├── AppStartAndFulfillTask.gif │ ├── aboutus.png │ ├── additionalDelay1Day.png │ ├── additionalDelay1Hour.png │ ├── additionalDelay2Days.png │ ├── additionalDelay2Hours.png │ ├── admin_settings.png │ ├── apikey.png │ ├── app-custom-server.gif │ ├── appAddProofOfDeliverySignatureAndPhoto.gif │ ├── appAddTaskDatePicker.png │ ├── appAddTaskScreen.png │ ├── appAddVoucherCode.gif │ ├── appAssignTaskSwipe.gif │ ├── appAssignTaskToMe.gif │ ├── appAssignTasksFromCourier.gif │ ├── appCancelOrder.gif │ ├── appCancelOrderAfterAccepted.gif │ ├── appChangeAddress.gif │ ├── appChangeRecipientName.gif │ ├── appCluster.gif │ ├── appCourierMainScreen.png │ ├── appDispatchMainScreen.png │ ├── appFulfillTaskAndSignature.gif │ ├── appFulfillTaskFromMap.gif │ ├── appFulfillTaskFromTaskList.gif │ ├── appMainScreenResto.png │ ├── appMarkTaskAsFailed.gif │ ├── appMarkTaskAsFailedFromMap.gif │ ├── appNewOrderAndAccept.gif │ ├── appOrderCollectedByCourier.gif │ ├── appOrderFulfilled.gif │ ├── appPlaceAnOrder.gif │ ├── appRestoSettings.png │ ├── appSelectDeliveryTime.gif │ ├── cantenabledthisrestoyet.png │ ├── config_pricing_fr.png │ ├── configurationSettings.png │ ├── connectCoopStripeTestMode.png │ ├── connectMyStripeAccountButton.png │ ├── create-resto-en-1.png │ ├── createAPolygoneZone.gif │ ├── createrestaurant.png │ ├── creation_resto_fr.png │ ├── deliveryLinkInfo.png │ ├── deliveryTimeSlotRemove.png │ ├── deliveryTimeSlotSave.png │ ├── deliveryTimeSlotsAdd.png │ ├── deliveryTimeSlotsSelected.png │ ├── deliveryTimeSlotsSelectedWeekend.png │ ├── enableDepositMoreOptionsDepRefund.png │ ├── enablerestotoggle.png │ ├── foodtech_dashboard.png │ ├── fullscreen.png │ ├── generalsettingsresto.png │ ├── geoloc_icone.png │ ├── google-key-restrictions.png │ ├── google-settings.gif │ ├── google1.png │ ├── google10.png │ ├── google11.png │ ├── google12.png │ ├── google1a.png │ ├── google1b.png │ ├── google1c.png │ ├── google2.png │ ├── google3.png │ ├── google4.png │ ├── google5.png │ ├── google6.png │ ├── google7.png │ ├── google8.png │ ├── google9.png │ ├── hourlySlotsCart.png │ ├── hourlySlotsPopup.png │ ├── how_to_set_up_a_product.png │ ├── hubCreateHubs.png │ ├── hubNameHub.png │ ├── hubSelectHubs.png │ ├── hubSelectRestos.png │ ├── invoicing_16.24.02.png │ ├── invoicing_16.24.11.png │ ├── invoicing_16.24.19.png │ ├── invoicing_16.24.26.png │ ├── invoicing_16.24.55.png │ ├── invoicing_16.25.02.png │ ├── invoicing_16.25.14.png │ ├── invoicing_16.25.31.png │ ├── invoicing_16.25.42.png │ ├── invoicing_16.25.50.png │ ├── invoicing_16.57.49.png │ ├── invoicing_16.59.02.png │ ├── invoicing_16.59.30.png │ ├── invoicing_17.05.08.png │ ├── invoicing_17.05.20.png │ ├── invoicing_17.20.25.png │ ├── invoicing_17.20.36.png │ ├── invoicing_17.25.40.png │ ├── invoicing_17.31.38.png │ ├── invoicing_17.31.46.png │ ├── jkbrztRrule.png │ ├── list_icon.png │ ├── livraisons_fr.png │ ├── logo.png │ ├── mediapart.svg │ ├── menus_fr.png │ ├── multipleDeliveryTimeSlots.png │ ├── nrf_connect_device.png │ ├── nrf_connect_device_unfolded.png │ ├── nrf_connect_scan.png │ ├── option_fr.png │ ├── orders_fr.png │ ├── package_config.png │ ├── package_order.png │ ├── package_pricing.png │ ├── param_pricing_fr.png │ ├── peek_geojson.gif │ ├── photo_proof_en.png │ ├── photo_proof_fr.png │ ├── php-logo.svg │ ├── polygoonIconGeoJsonDotIo.png │ ├── prestashop_shopping_cart.png │ ├── pricingAllMatchingRules.png │ ├── pricingFirstMatchingRule.png │ ├── pricingFirstRulePlusFixedPrice.png │ ├── pricingPricingRule.png │ ├── pricing_debug_2.png │ ├── productsettings.png │ ├── proof_icon.png │ ├── ps_carrier_config.gif │ ├── recurrenceRulesDelete.png │ ├── recurrenceRulesList.png │ ├── recurrenceRulesOverride.png │ ├── recurrenceRulesSetup.png │ ├── recurrenceRulesUsage.png │ ├── restaurant_detail_fr.png │ ├── restoGeneralAndProductSettings.png │ ├── resto_close_banner_icon.png │ ├── resto_closed_banner_fr.png │ ├── resto_date_fr.png │ ├── resto_order_list_fr.png │ ├── resto_param_icon.png │ ├── resto_power_icon.png │ ├── resto_refresh_btn_fr.png │ ├── savedOrdersList.png │ ├── savedOrdersSetup.png │ ├── savedOrdersUsage.png │ ├── send_signature_en.png │ ├── send_signature_fr.png │ ├── shippingChoices2.png │ ├── shippingChoices3.png │ ├── slotApprox15Minutes.png │ ├── slotApprox5Minutes.png │ ├── store_settings_en.png │ ├── stripeAPIkeys.png │ ├── stripeAccountTypes.png │ ├── stripeActivateAccount.png │ ├── stripeActivateYourAccount.png │ ├── stripeAddURI.png │ ├── stripeBusinessStructure.png │ ├── stripeConnectAddURI.png │ ├── stripeConnectGetStarted.png │ ├── stripeConnectPlatformMarketplace.png │ ├── stripeConnectPlatformProfileLiveMode.png │ ├── stripeConnectTestCliendID.png │ ├── stripeDeselectAllCountries.png │ ├── stripeEnableOAuth.png │ ├── stripeNewAccount.png │ ├── stripePlatformProfileCustomerPurchaseProducts.png │ ├── stripePlatformProfileOnDemandServices.png │ ├── stripePlatformProfileTransactionNameCustomerStatement.png │ ├── stripeRestoAccountName.png │ ├── stripeRestoManageAccount.png │ ├── stripeTest.png │ ├── stripeTestChooseResto.png │ ├── stripeTestSkip.png │ ├── stripeVerifyYourEmail.png │ ├── stripe_resto_account_fr.png │ ├── stripe_resto_account_fr_2.png │ ├── stripe_resto_account_fr_3.png │ ├── stripe_resto_account_fr_4.png │ ├── stripe_resto_account_fr_5.png │ ├── task_issue_en.png │ ├── task_issue_fr.png │ ├── task_list_en.png │ ├── task_list_fr.png │ ├── task_validation_en.png │ ├── task_validation_fr.png │ ├── time_slot_dropdown_en.png │ ├── time_slots_en.png │ ├── toggleStripeViewTestData.png │ └── woop_new_integration.png └── scripts │ └── zoom.js ├── docs.sublime-project ├── docs.sublime-workspace ├── docs ├── _admin │ ├── Incidents.md │ ├── customise.md │ ├── data-analytics.md │ ├── enable-places-new.md │ ├── google.md │ ├── intro.md │ ├── invoicing.md │ ├── pricing.md │ ├── pricing_basics.md │ ├── pricing_complex.md │ ├── pricing_examples.md │ ├── pricing_introduction.md │ ├── pricing_lastmile.md │ ├── pricing_method_of_calculation.md │ ├── pricing_multi_dropoff.md │ ├── pricing_old_school.md │ ├── pricing_rule.md │ ├── pricing_testing.md │ ├── users.md │ └── woop.md ├── _app │ ├── bluetooth-printers.md │ ├── courier.md │ ├── customer.md │ ├── dispatcher.html │ ├── dispatcher.md │ ├── install.md │ └── restaurant.md ├── _developer │ ├── api.md │ ├── deliveries.md │ ├── plugins.md │ ├── prestashop.md │ ├── retail-prices.md │ ├── time-slots.md │ ├── webhooks.md │ └── wordpress.md ├── _essentials │ ├── activities.md │ ├── glossary.md │ └── glossary │ │ ├── delivery.md │ │ ├── order.md │ │ ├── package.md │ │ ├── routes.md │ │ ├── shops.md │ │ ├── store.md │ │ ├── task.md │ │ └── time-slot.md ├── _food_tech │ ├── business-accounts.md │ ├── intro.md │ ├── orders.md │ ├── promotions.md │ ├── refunds.md │ ├── restaurants.md │ └── restaurants │ │ ├── _includes │ │ ├── extras.md │ │ ├── fulfillment.md │ │ ├── general.md │ │ ├── menus.md │ │ ├── options.md │ │ ├── payment.md │ │ ├── planning.md │ │ ├── products.md │ │ ├── settlement.md │ │ └── statistics.md │ │ ├── creating-a-restaurant.md │ │ ├── general-settings.md │ │ ├── hubs.md │ │ ├── product-settings.md │ │ └── product-settings │ │ └── preparation.md ├── _package_delivery │ ├── coopcycle-deliveries-simple-example.csv │ ├── excel-imports.md │ ├── intro.md │ ├── last-mile.md │ ├── last-mile │ │ └── intro.md │ ├── local-commerce.md │ ├── local-commerce │ │ ├── intro.md │ │ ├── recurrence-rules.md │ │ ├── recurring-orders.md │ │ └── saved-orders.md │ └── orders.md ├── _payment_processors │ ├── mercadopago.md │ ├── stripe.md │ ├── stripeHiddenInfo.md │ └── test-mode.md └── _web │ ├── admin.md │ └── admin │ ├── dashboard.md │ ├── deliveries.md │ ├── deliveries │ ├── api.md │ ├── externaldisplay.md │ ├── failures.md │ ├── incidents.md │ ├── integrations.md │ ├── invoicing.md │ ├── packages.md │ ├── pricing.md │ ├── stores.md │ ├── tags.md │ ├── timeslots.md │ ├── vehicles.md │ ├── warehouses.md │ └── zones.md │ ├── foodtech_dashboard.md │ ├── orders.md │ ├── settings.md │ ├── shops.md │ ├── statistics.md │ └── users.md ├── favicon.ico └── index.md /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coopcycle/coopcycle-docs/HEAD/.gitignore -------------------------------------------------------------------------------- /404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coopcycle/coopcycle-docs/HEAD/404.html -------------------------------------------------------------------------------- /CNAME: -------------------------------------------------------------------------------- 1 | docs.coopcycle.org -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coopcycle/coopcycle-docs/HEAD/Gemfile -------------------------------------------------------------------------------- /Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coopcycle/coopcycle-docs/HEAD/Gemfile.lock -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coopcycle/coopcycle-docs/HEAD/README.md -------------------------------------------------------------------------------- /_backup/en/admin/configuration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coopcycle/coopcycle-docs/HEAD/_backup/en/admin/configuration.md -------------------------------------------------------------------------------- /_backup/en/admin/getting-started/dispatch.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coopcycle/coopcycle-docs/HEAD/_backup/en/admin/getting-started/dispatch.md -------------------------------------------------------------------------------- /_backup/en/admin/getting-started/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coopcycle/coopcycle-docs/HEAD/_backup/en/admin/getting-started/index.md -------------------------------------------------------------------------------- /_backup/en/admin/getting-started/orders.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coopcycle/coopcycle-docs/HEAD/_backup/en/admin/getting-started/orders.md -------------------------------------------------------------------------------- /_backup/en/admin/getting-started/package-set.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coopcycle/coopcycle-docs/HEAD/_backup/en/admin/getting-started/package-set.md -------------------------------------------------------------------------------- /_backup/en/admin/getting-started/pricing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coopcycle/coopcycle-docs/HEAD/_backup/en/admin/getting-started/pricing.md -------------------------------------------------------------------------------- /_backup/en/admin/getting-started/time-slots.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coopcycle/coopcycle-docs/HEAD/_backup/en/admin/getting-started/time-slots.md -------------------------------------------------------------------------------- /_backup/en/admin/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coopcycle/coopcycle-docs/HEAD/_backup/en/admin/index.md -------------------------------------------------------------------------------- /_backup/en/admin/key-concepts.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coopcycle/coopcycle-docs/HEAD/_backup/en/admin/key-concepts.md -------------------------------------------------------------------------------- /_backup/en/admin/orders.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coopcycle/coopcycle-docs/HEAD/_backup/en/admin/orders.md -------------------------------------------------------------------------------- /_backup/en/admin/stores.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coopcycle/coopcycle-docs/HEAD/_backup/en/admin/stores.md -------------------------------------------------------------------------------- /_backup/en/admin/stripe-payments.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coopcycle/coopcycle-docs/HEAD/_backup/en/admin/stripe-payments.md -------------------------------------------------------------------------------- /_backup/en/admin/users.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coopcycle/coopcycle-docs/HEAD/_backup/en/admin/users.md -------------------------------------------------------------------------------- /_backup/en/admin/users/admin-account.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coopcycle/coopcycle-docs/HEAD/_backup/en/admin/users/admin-account.md -------------------------------------------------------------------------------- /_backup/en/admin/users/courier-account.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coopcycle/coopcycle-docs/HEAD/_backup/en/admin/users/courier-account.md -------------------------------------------------------------------------------- /_backup/en/admin/users/customer-account.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coopcycle/coopcycle-docs/HEAD/_backup/en/admin/users/customer-account.md -------------------------------------------------------------------------------- /_backup/en/admin/users/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coopcycle/coopcycle-docs/HEAD/_backup/en/admin/users/index.md -------------------------------------------------------------------------------- /_backup/en/admin/users/restaurant-account/creating-restaurant.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coopcycle/coopcycle-docs/HEAD/_backup/en/admin/users/restaurant-account/creating-restaurant.md -------------------------------------------------------------------------------- /_backup/en/admin/users/restaurant-account/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coopcycle/coopcycle-docs/HEAD/_backup/en/admin/users/restaurant-account/index.md -------------------------------------------------------------------------------- /_backup/en/admin/users/store-account/creating-store.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coopcycle/coopcycle-docs/HEAD/_backup/en/admin/users/store-account/creating-store.md -------------------------------------------------------------------------------- /_backup/en/admin/users/store-account/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coopcycle/coopcycle-docs/HEAD/_backup/en/admin/users/store-account/index.md -------------------------------------------------------------------------------- /_backup/en/app/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coopcycle/coopcycle-docs/HEAD/_backup/en/app/index.md -------------------------------------------------------------------------------- /_backup/en/app/installation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coopcycle/coopcycle-docs/HEAD/_backup/en/app/installation.md -------------------------------------------------------------------------------- /_backup/en/app/order-management.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coopcycle/coopcycle-docs/HEAD/_backup/en/app/order-management.md -------------------------------------------------------------------------------- /_backup/en/app/task-management.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coopcycle/coopcycle-docs/HEAD/_backup/en/app/task-management.md -------------------------------------------------------------------------------- /_backup/en/courier/app-tutorial.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coopcycle/coopcycle-docs/HEAD/_backup/en/courier/app-tutorial.md -------------------------------------------------------------------------------- /_backup/en/courier/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coopcycle/coopcycle-docs/HEAD/_backup/en/courier/index.md -------------------------------------------------------------------------------- /_backup/en/developer/api.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coopcycle/coopcycle-docs/HEAD/_backup/en/developer/api.md -------------------------------------------------------------------------------- /_backup/en/developer/api/deliveries.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coopcycle/coopcycle-docs/HEAD/_backup/en/developer/api/deliveries.md -------------------------------------------------------------------------------- /_backup/en/developer/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coopcycle/coopcycle-docs/HEAD/_backup/en/developer/index.md -------------------------------------------------------------------------------- /_backup/en/developer/stripe.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coopcycle/coopcycle-docs/HEAD/_backup/en/developer/stripe.md -------------------------------------------------------------------------------- /_backup/en/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coopcycle/coopcycle-docs/HEAD/_backup/en/index.md -------------------------------------------------------------------------------- /_backup/en/payment-portals/about-stripe.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coopcycle/coopcycle-docs/HEAD/_backup/en/payment-portals/about-stripe.md -------------------------------------------------------------------------------- /_backup/en/payment-portals/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coopcycle/coopcycle-docs/HEAD/_backup/en/payment-portals/index.md -------------------------------------------------------------------------------- /_backup/en/plugins/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coopcycle/coopcycle-docs/HEAD/_backup/en/plugins/index.md -------------------------------------------------------------------------------- /_backup/en/plugins/woocommerce.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coopcycle/coopcycle-docs/HEAD/_backup/en/plugins/woocommerce.md -------------------------------------------------------------------------------- /_backup/en/restaurant/bluetooth-printers.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coopcycle/coopcycle-docs/HEAD/_backup/en/restaurant/bluetooth-printers.md -------------------------------------------------------------------------------- /_backup/en/restaurant/connecting-stripe.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coopcycle/coopcycle-docs/HEAD/_backup/en/restaurant/connecting-stripe.md -------------------------------------------------------------------------------- /_backup/en/restaurant/create-restaurant.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coopcycle/coopcycle-docs/HEAD/_backup/en/restaurant/create-restaurant.md -------------------------------------------------------------------------------- /_backup/en/restaurant/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coopcycle/coopcycle-docs/HEAD/_backup/en/restaurant/index.md -------------------------------------------------------------------------------- /_backup/en/restaurant/restaurant-information.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coopcycle/coopcycle-docs/HEAD/_backup/en/restaurant/restaurant-information.md -------------------------------------------------------------------------------- /_backup/en/restaurant/restaurant-management.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coopcycle/coopcycle-docs/HEAD/_backup/en/restaurant/restaurant-management.md -------------------------------------------------------------------------------- /_backup/fr/administrateur/actions/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coopcycle/coopcycle-docs/HEAD/_backup/fr/administrateur/actions/index.md -------------------------------------------------------------------------------- /_backup/fr/administrateur/actions/livraisons.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coopcycle/coopcycle-docs/HEAD/_backup/fr/administrateur/actions/livraisons.md -------------------------------------------------------------------------------- /_backup/fr/administrateur/actions/tableau-de-bord.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coopcycle/coopcycle-docs/HEAD/_backup/fr/administrateur/actions/tableau-de-bord.md -------------------------------------------------------------------------------- /_backup/fr/administrateur/actions/tarifications.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coopcycle/coopcycle-docs/HEAD/_backup/fr/administrateur/actions/tarifications.md -------------------------------------------------------------------------------- /_backup/fr/administrateur/commandes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coopcycle/coopcycle-docs/HEAD/_backup/fr/administrateur/commandes.md -------------------------------------------------------------------------------- /_backup/fr/administrateur/concepts-cles.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coopcycle/coopcycle-docs/HEAD/_backup/fr/administrateur/concepts-cles.md -------------------------------------------------------------------------------- /_backup/fr/administrateur/configuration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coopcycle/coopcycle-docs/HEAD/_backup/fr/administrateur/configuration.md -------------------------------------------------------------------------------- /_backup/fr/administrateur/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coopcycle/coopcycle-docs/HEAD/_backup/fr/administrateur/index.md -------------------------------------------------------------------------------- /_backup/fr/administrateur/magasins.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coopcycle/coopcycle-docs/HEAD/_backup/fr/administrateur/magasins.md -------------------------------------------------------------------------------- /_backup/fr/administrateur/paiements-stripe.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coopcycle/coopcycle-docs/HEAD/_backup/fr/administrateur/paiements-stripe.md -------------------------------------------------------------------------------- /_backup/fr/administrateur/utilisateurs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coopcycle/coopcycle-docs/HEAD/_backup/fr/administrateur/utilisateurs.md -------------------------------------------------------------------------------- /_backup/fr/application/gestion-des-commandes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coopcycle/coopcycle-docs/HEAD/_backup/fr/application/gestion-des-commandes.md -------------------------------------------------------------------------------- /_backup/fr/application/gestion-des-taches.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coopcycle/coopcycle-docs/HEAD/_backup/fr/application/gestion-des-taches.md -------------------------------------------------------------------------------- /_backup/fr/application/imprimantes-bluetooth.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coopcycle/coopcycle-docs/HEAD/_backup/fr/application/imprimantes-bluetooth.md -------------------------------------------------------------------------------- /_backup/fr/application/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coopcycle/coopcycle-docs/HEAD/_backup/fr/application/index.md -------------------------------------------------------------------------------- /_backup/fr/application/installation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coopcycle/coopcycle-docs/HEAD/_backup/fr/application/installation.md -------------------------------------------------------------------------------- /_backup/fr/developpeur/api.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coopcycle/coopcycle-docs/HEAD/_backup/fr/developpeur/api.md -------------------------------------------------------------------------------- /_backup/fr/developpeur/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coopcycle/coopcycle-docs/HEAD/_backup/fr/developpeur/index.md -------------------------------------------------------------------------------- /_backup/fr/developpeur/livraisons.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coopcycle/coopcycle-docs/HEAD/_backup/fr/developpeur/livraisons.md -------------------------------------------------------------------------------- /_backup/fr/guides/organiser-une-initiative-solidaire.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coopcycle/coopcycle-docs/HEAD/_backup/fr/guides/organiser-une-initiative-solidaire.md -------------------------------------------------------------------------------- /_backup/fr/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coopcycle/coopcycle-docs/HEAD/_backup/fr/index.md -------------------------------------------------------------------------------- /_backup/fr/restaurants/creation-restaurant.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coopcycle/coopcycle-docs/HEAD/_backup/fr/restaurants/creation-restaurant.md -------------------------------------------------------------------------------- /_backup/fr/restaurants/gerer-un-restaurant.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coopcycle/coopcycle-docs/HEAD/_backup/fr/restaurants/gerer-un-restaurant.md -------------------------------------------------------------------------------- /_backup/fr/restaurants/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coopcycle/coopcycle-docs/HEAD/_backup/fr/restaurants/index.md -------------------------------------------------------------------------------- /_backup/fr/restaurants/restaurant.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coopcycle/coopcycle-docs/HEAD/_backup/fr/restaurants/restaurant.md -------------------------------------------------------------------------------- /_backup/fr/tutoriels/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coopcycle/coopcycle-docs/HEAD/_backup/fr/tutoriels/index.md -------------------------------------------------------------------------------- /_backup/fr/tutoriels/zones.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coopcycle/coopcycle-docs/HEAD/_backup/fr/tutoriels/zones.md -------------------------------------------------------------------------------- /_backup/pt-BR/admin/actions/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coopcycle/coopcycle-docs/HEAD/_backup/pt-BR/admin/actions/index.md -------------------------------------------------------------------------------- /_backup/pt-BR/admin/actions/intervalos-tempo.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coopcycle/coopcycle-docs/HEAD/_backup/pt-BR/admin/actions/intervalos-tempo.md -------------------------------------------------------------------------------- /_backup/pt-BR/admin/actions/pacotes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coopcycle/coopcycle-docs/HEAD/_backup/pt-BR/admin/actions/pacotes.md -------------------------------------------------------------------------------- /_backup/pt-BR/admin/actions/painel-controle.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coopcycle/coopcycle-docs/HEAD/_backup/pt-BR/admin/actions/painel-controle.md -------------------------------------------------------------------------------- /_backup/pt-BR/admin/actions/pedidos.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coopcycle/coopcycle-docs/HEAD/_backup/pt-BR/admin/actions/pedidos.md -------------------------------------------------------------------------------- /_backup/pt-BR/admin/actions/precos.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coopcycle/coopcycle-docs/HEAD/_backup/pt-BR/admin/actions/precos.md -------------------------------------------------------------------------------- /_backup/pt-BR/admin/conceitos-chave.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coopcycle/coopcycle-docs/HEAD/_backup/pt-BR/admin/conceitos-chave.md -------------------------------------------------------------------------------- /_backup/pt-BR/admin/configuracao.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coopcycle/coopcycle-docs/HEAD/_backup/pt-BR/admin/configuracao.md -------------------------------------------------------------------------------- /_backup/pt-BR/admin/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coopcycle/coopcycle-docs/HEAD/_backup/pt-BR/admin/index.md -------------------------------------------------------------------------------- /_backup/pt-BR/admin/lojas.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coopcycle/coopcycle-docs/HEAD/_backup/pt-BR/admin/lojas.md -------------------------------------------------------------------------------- /_backup/pt-BR/admin/pagamento-stripe.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coopcycle/coopcycle-docs/HEAD/_backup/pt-BR/admin/pagamento-stripe.md -------------------------------------------------------------------------------- /_backup/pt-BR/admin/pedidos.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coopcycle/coopcycle-docs/HEAD/_backup/pt-BR/admin/pedidos.md -------------------------------------------------------------------------------- /_backup/pt-BR/admin/users/conta-administrador.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coopcycle/coopcycle-docs/HEAD/_backup/pt-BR/admin/users/conta-administrador.md -------------------------------------------------------------------------------- /_backup/pt-BR/admin/users/conta-cliente.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coopcycle/coopcycle-docs/HEAD/_backup/pt-BR/admin/users/conta-cliente.md -------------------------------------------------------------------------------- /_backup/pt-BR/admin/users/conta-loja/criar-loja.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coopcycle/coopcycle-docs/HEAD/_backup/pt-BR/admin/users/conta-loja/criar-loja.md -------------------------------------------------------------------------------- /_backup/pt-BR/admin/users/conta-loja/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coopcycle/coopcycle-docs/HEAD/_backup/pt-BR/admin/users/conta-loja/index.md -------------------------------------------------------------------------------- /_backup/pt-BR/admin/users/conta-mensageiro.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coopcycle/coopcycle-docs/HEAD/_backup/pt-BR/admin/users/conta-mensageiro.md -------------------------------------------------------------------------------- /_backup/pt-BR/admin/users/conta-restaurante/criar-restaurante.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coopcycle/coopcycle-docs/HEAD/_backup/pt-BR/admin/users/conta-restaurante/criar-restaurante.md -------------------------------------------------------------------------------- /_backup/pt-BR/admin/users/conta-restaurante/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coopcycle/coopcycle-docs/HEAD/_backup/pt-BR/admin/users/conta-restaurante/index.md -------------------------------------------------------------------------------- /_backup/pt-BR/admin/users/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coopcycle/coopcycle-docs/HEAD/_backup/pt-BR/admin/users/index.md -------------------------------------------------------------------------------- /_backup/pt-BR/admin/usuarios.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coopcycle/coopcycle-docs/HEAD/_backup/pt-BR/admin/usuarios.md -------------------------------------------------------------------------------- /_backup/pt-BR/app/administracao-entregas.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coopcycle/coopcycle-docs/HEAD/_backup/pt-BR/app/administracao-entregas.md -------------------------------------------------------------------------------- /_backup/pt-BR/app/administracao-tarefas.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coopcycle/coopcycle-docs/HEAD/_backup/pt-BR/app/administracao-tarefas.md -------------------------------------------------------------------------------- /_backup/pt-BR/app/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coopcycle/coopcycle-docs/HEAD/_backup/pt-BR/app/index.md -------------------------------------------------------------------------------- /_backup/pt-BR/app/instalacao.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coopcycle/coopcycle-docs/HEAD/_backup/pt-BR/app/instalacao.md -------------------------------------------------------------------------------- /_backup/pt-BR/cliente/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coopcycle/coopcycle-docs/HEAD/_backup/pt-BR/cliente/index.md -------------------------------------------------------------------------------- /_backup/pt-BR/developer/api.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coopcycle/coopcycle-docs/HEAD/_backup/pt-BR/developer/api.md -------------------------------------------------------------------------------- /_backup/pt-BR/developer/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coopcycle/coopcycle-docs/HEAD/_backup/pt-BR/developer/index.md -------------------------------------------------------------------------------- /_backup/pt-BR/entregador/guia-app.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coopcycle/coopcycle-docs/HEAD/_backup/pt-BR/entregador/guia-app.md -------------------------------------------------------------------------------- /_backup/pt-BR/entregador/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coopcycle/coopcycle-docs/HEAD/_backup/pt-BR/entregador/index.md -------------------------------------------------------------------------------- /_backup/pt-BR/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coopcycle/coopcycle-docs/HEAD/_backup/pt-BR/index.md -------------------------------------------------------------------------------- /_backup/pt-BR/plugins/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coopcycle/coopcycle-docs/HEAD/_backup/pt-BR/plugins/index.md -------------------------------------------------------------------------------- /_backup/pt-BR/plugins/woocommerce.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coopcycle/coopcycle-docs/HEAD/_backup/pt-BR/plugins/woocommerce.md -------------------------------------------------------------------------------- /_backup/pt-BR/restaurantes/administracao-restaurante.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coopcycle/coopcycle-docs/HEAD/_backup/pt-BR/restaurantes/administracao-restaurante.md -------------------------------------------------------------------------------- /_backup/pt-BR/restaurantes/criar-restaurante.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coopcycle/coopcycle-docs/HEAD/_backup/pt-BR/restaurantes/criar-restaurante.md -------------------------------------------------------------------------------- /_backup/pt-BR/restaurantes/impressoras-bluetooth.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coopcycle/coopcycle-docs/HEAD/_backup/pt-BR/restaurantes/impressoras-bluetooth.md -------------------------------------------------------------------------------- /_backup/pt-BR/restaurantes/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coopcycle/coopcycle-docs/HEAD/_backup/pt-BR/restaurantes/index.md -------------------------------------------------------------------------------- /_backup/pt-BR/restaurantes/informacoes-restaurante.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coopcycle/coopcycle-docs/HEAD/_backup/pt-BR/restaurantes/informacoes-restaurante.md -------------------------------------------------------------------------------- /_backup/pt-BR/tutorials/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coopcycle/coopcycle-docs/HEAD/_backup/pt-BR/tutorials/index.md -------------------------------------------------------------------------------- /_backup/pt-BR/tutorials/zones.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coopcycle/coopcycle-docs/HEAD/_backup/pt-BR/tutorials/zones.md -------------------------------------------------------------------------------- /_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coopcycle/coopcycle-docs/HEAD/_config.yml -------------------------------------------------------------------------------- /_data/common.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coopcycle/coopcycle-docs/HEAD/_data/common.yml -------------------------------------------------------------------------------- /_data/langs.yml: -------------------------------------------------------------------------------- 1 | - en 2 | - fr 3 | - pt-BR 4 | -------------------------------------------------------------------------------- /_data/roles.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coopcycle/coopcycle-docs/HEAD/_data/roles.yml -------------------------------------------------------------------------------- /_includes/head_custom.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coopcycle/coopcycle-docs/HEAD/_includes/head_custom.html -------------------------------------------------------------------------------- /_includes/langs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coopcycle/coopcycle-docs/HEAD/_includes/langs.html -------------------------------------------------------------------------------- /_includes/scripts.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coopcycle/coopcycle-docs/HEAD/_includes/scripts.html -------------------------------------------------------------------------------- /_includes/sidebar_footer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coopcycle/coopcycle-docs/HEAD/_includes/sidebar_footer.html -------------------------------------------------------------------------------- /_includes/title.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coopcycle/coopcycle-docs/HEAD/_includes/title.html -------------------------------------------------------------------------------- /_sass/custom/custom.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coopcycle/coopcycle-docs/HEAD/_sass/custom/custom.scss -------------------------------------------------------------------------------- /_sass/font-awesome.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coopcycle/coopcycle-docs/HEAD/_sass/font-awesome.scss -------------------------------------------------------------------------------- /_sass/layout.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coopcycle/coopcycle-docs/HEAD/_sass/layout.scss -------------------------------------------------------------------------------- /_sass/navigation.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coopcycle/coopcycle-docs/HEAD/_sass/navigation.scss -------------------------------------------------------------------------------- /_sass/overrides.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coopcycle/coopcycle-docs/HEAD/_sass/overrides.scss -------------------------------------------------------------------------------- /_translations/en.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coopcycle/coopcycle-docs/HEAD/_translations/en.po -------------------------------------------------------------------------------- /_translations/en/admin/configuration.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coopcycle/coopcycle-docs/HEAD/_translations/en/admin/configuration.po -------------------------------------------------------------------------------- /_translations/en/admin/getting-started/dispatch.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coopcycle/coopcycle-docs/HEAD/_translations/en/admin/getting-started/dispatch.po -------------------------------------------------------------------------------- /_translations/en/admin/getting-started/index.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coopcycle/coopcycle-docs/HEAD/_translations/en/admin/getting-started/index.po -------------------------------------------------------------------------------- /_translations/en/admin/getting-started/orders.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coopcycle/coopcycle-docs/HEAD/_translations/en/admin/getting-started/orders.po -------------------------------------------------------------------------------- /_translations/en/admin/getting-started/package-set.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coopcycle/coopcycle-docs/HEAD/_translations/en/admin/getting-started/package-set.po -------------------------------------------------------------------------------- /_translations/en/admin/getting-started/pricing.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coopcycle/coopcycle-docs/HEAD/_translations/en/admin/getting-started/pricing.po -------------------------------------------------------------------------------- /_translations/en/admin/getting-started/time-slots.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coopcycle/coopcycle-docs/HEAD/_translations/en/admin/getting-started/time-slots.po -------------------------------------------------------------------------------- /_translations/en/admin/index.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coopcycle/coopcycle-docs/HEAD/_translations/en/admin/index.po -------------------------------------------------------------------------------- /_translations/en/admin/key-concepts.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coopcycle/coopcycle-docs/HEAD/_translations/en/admin/key-concepts.po -------------------------------------------------------------------------------- /_translations/en/admin/orders.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coopcycle/coopcycle-docs/HEAD/_translations/en/admin/orders.po -------------------------------------------------------------------------------- /_translations/en/admin/stores.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coopcycle/coopcycle-docs/HEAD/_translations/en/admin/stores.po -------------------------------------------------------------------------------- /_translations/en/admin/stripe-payments.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coopcycle/coopcycle-docs/HEAD/_translations/en/admin/stripe-payments.po -------------------------------------------------------------------------------- /_translations/en/admin/users.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coopcycle/coopcycle-docs/HEAD/_translations/en/admin/users.po -------------------------------------------------------------------------------- /_translations/en/admin/users/admin-account.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coopcycle/coopcycle-docs/HEAD/_translations/en/admin/users/admin-account.po -------------------------------------------------------------------------------- /_translations/en/admin/users/courier-account.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coopcycle/coopcycle-docs/HEAD/_translations/en/admin/users/courier-account.po -------------------------------------------------------------------------------- /_translations/en/admin/users/customer-account.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coopcycle/coopcycle-docs/HEAD/_translations/en/admin/users/customer-account.po -------------------------------------------------------------------------------- /_translations/en/admin/users/index.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coopcycle/coopcycle-docs/HEAD/_translations/en/admin/users/index.po -------------------------------------------------------------------------------- /_translations/en/admin/users/restaurant-account/creating-restaurant.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coopcycle/coopcycle-docs/HEAD/_translations/en/admin/users/restaurant-account/creating-restaurant.po -------------------------------------------------------------------------------- /_translations/en/admin/users/restaurant-account/index.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coopcycle/coopcycle-docs/HEAD/_translations/en/admin/users/restaurant-account/index.po -------------------------------------------------------------------------------- /_translations/en/admin/users/store-account/creating-store.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coopcycle/coopcycle-docs/HEAD/_translations/en/admin/users/store-account/creating-store.po -------------------------------------------------------------------------------- /_translations/en/admin/users/store-account/index.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coopcycle/coopcycle-docs/HEAD/_translations/en/admin/users/store-account/index.po -------------------------------------------------------------------------------- /_translations/en/app/index.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coopcycle/coopcycle-docs/HEAD/_translations/en/app/index.po -------------------------------------------------------------------------------- /_translations/en/app/installation.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coopcycle/coopcycle-docs/HEAD/_translations/en/app/installation.po -------------------------------------------------------------------------------- /_translations/en/app/order-management.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coopcycle/coopcycle-docs/HEAD/_translations/en/app/order-management.po -------------------------------------------------------------------------------- /_translations/en/app/task-management.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coopcycle/coopcycle-docs/HEAD/_translations/en/app/task-management.po -------------------------------------------------------------------------------- /_translations/en/courier/app-tutorial.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coopcycle/coopcycle-docs/HEAD/_translations/en/courier/app-tutorial.po -------------------------------------------------------------------------------- /_translations/en/courier/index.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coopcycle/coopcycle-docs/HEAD/_translations/en/courier/index.po -------------------------------------------------------------------------------- /_translations/en/developer/api.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coopcycle/coopcycle-docs/HEAD/_translations/en/developer/api.po -------------------------------------------------------------------------------- /_translations/en/developer/api/deliveries.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coopcycle/coopcycle-docs/HEAD/_translations/en/developer/api/deliveries.po -------------------------------------------------------------------------------- /_translations/en/developer/index.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coopcycle/coopcycle-docs/HEAD/_translations/en/developer/index.po -------------------------------------------------------------------------------- /_translations/en/developer/stripe.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coopcycle/coopcycle-docs/HEAD/_translations/en/developer/stripe.po -------------------------------------------------------------------------------- /_translations/en/index.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coopcycle/coopcycle-docs/HEAD/_translations/en/index.po -------------------------------------------------------------------------------- /_translations/en/payment-portals/about-stripe.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coopcycle/coopcycle-docs/HEAD/_translations/en/payment-portals/about-stripe.po -------------------------------------------------------------------------------- /_translations/en/payment-portals/index.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coopcycle/coopcycle-docs/HEAD/_translations/en/payment-portals/index.po -------------------------------------------------------------------------------- /_translations/en/plugins/index.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coopcycle/coopcycle-docs/HEAD/_translations/en/plugins/index.po -------------------------------------------------------------------------------- /_translations/en/plugins/woocommerce.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coopcycle/coopcycle-docs/HEAD/_translations/en/plugins/woocommerce.po -------------------------------------------------------------------------------- /_translations/en/restaurant/bluetooth-printers.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coopcycle/coopcycle-docs/HEAD/_translations/en/restaurant/bluetooth-printers.po -------------------------------------------------------------------------------- /_translations/en/restaurant/connecting-stripe.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coopcycle/coopcycle-docs/HEAD/_translations/en/restaurant/connecting-stripe.po -------------------------------------------------------------------------------- /_translations/en/restaurant/create-restaurant.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coopcycle/coopcycle-docs/HEAD/_translations/en/restaurant/create-restaurant.po -------------------------------------------------------------------------------- /_translations/en/restaurant/index.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coopcycle/coopcycle-docs/HEAD/_translations/en/restaurant/index.po -------------------------------------------------------------------------------- /_translations/en/restaurant/restaurant-information.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coopcycle/coopcycle-docs/HEAD/_translations/en/restaurant/restaurant-information.po -------------------------------------------------------------------------------- /_translations/en/restaurant/restaurant-management.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coopcycle/coopcycle-docs/HEAD/_translations/en/restaurant/restaurant-management.po -------------------------------------------------------------------------------- /_translations/en/tutorials/index.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coopcycle/coopcycle-docs/HEAD/_translations/en/tutorials/index.po -------------------------------------------------------------------------------- /_translations/en/tutorials/zones.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coopcycle/coopcycle-docs/HEAD/_translations/en/tutorials/zones.po -------------------------------------------------------------------------------- /_translations/fr.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coopcycle/coopcycle-docs/HEAD/_translations/fr.po -------------------------------------------------------------------------------- /admin/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coopcycle/coopcycle-docs/HEAD/admin/config.yml -------------------------------------------------------------------------------- /admin/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coopcycle/coopcycle-docs/HEAD/admin/index.html -------------------------------------------------------------------------------- /assets/fonts/fontawesome-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coopcycle/coopcycle-docs/HEAD/assets/fonts/fontawesome-webfont.eot -------------------------------------------------------------------------------- /assets/fonts/fontawesome-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coopcycle/coopcycle-docs/HEAD/assets/fonts/fontawesome-webfont.ttf -------------------------------------------------------------------------------- /assets/fonts/fontawesome-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coopcycle/coopcycle-docs/HEAD/assets/fonts/fontawesome-webfont.woff -------------------------------------------------------------------------------- /assets/fonts/fontawesome-webfont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coopcycle/coopcycle-docs/HEAD/assets/fonts/fontawesome-webfont.woff2 -------------------------------------------------------------------------------- /assets/images/001TESTmodeConfigSettings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coopcycle/coopcycle-docs/HEAD/assets/images/001TESTmodeConfigSettings.png -------------------------------------------------------------------------------- /assets/images/002TESTmodeToggleOffStripeLive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coopcycle/coopcycle-docs/HEAD/assets/images/002TESTmodeToggleOffStripeLive.png -------------------------------------------------------------------------------- /assets/images/003TESTmodePlatformDisabledNonAdminUser.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coopcycle/coopcycle-docs/HEAD/assets/images/003TESTmodePlatformDisabledNonAdminUser.png -------------------------------------------------------------------------------- /assets/images/004TESTmodeToggleOffMaintenanceMode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coopcycle/coopcycle-docs/HEAD/assets/images/004TESTmodeToggleOffMaintenanceMode.png -------------------------------------------------------------------------------- /assets/images/2020-11-07-18-21-42.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coopcycle/coopcycle-docs/HEAD/assets/images/2020-11-07-18-21-42.png -------------------------------------------------------------------------------- /assets/images/2020-11-07-20-15-52.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coopcycle/coopcycle-docs/HEAD/assets/images/2020-11-07-20-15-52.png -------------------------------------------------------------------------------- /assets/images/2020-11-07-20-18-53.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coopcycle/coopcycle-docs/HEAD/assets/images/2020-11-07-20-18-53.png -------------------------------------------------------------------------------- /assets/images/2020-11-07-20-21-25.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coopcycle/coopcycle-docs/HEAD/assets/images/2020-11-07-20-21-25.png -------------------------------------------------------------------------------- /assets/images/ASAPTimesCart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coopcycle/coopcycle-docs/HEAD/assets/images/ASAPTimesCart.png -------------------------------------------------------------------------------- /assets/images/ASAPTimesPopup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coopcycle/coopcycle-docs/HEAD/assets/images/ASAPTimesPopup.png -------------------------------------------------------------------------------- /assets/images/AppStartAndFulfillTask.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coopcycle/coopcycle-docs/HEAD/assets/images/AppStartAndFulfillTask.gif -------------------------------------------------------------------------------- /assets/images/aboutus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coopcycle/coopcycle-docs/HEAD/assets/images/aboutus.png -------------------------------------------------------------------------------- /assets/images/additionalDelay1Day.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coopcycle/coopcycle-docs/HEAD/assets/images/additionalDelay1Day.png -------------------------------------------------------------------------------- /assets/images/additionalDelay1Hour.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coopcycle/coopcycle-docs/HEAD/assets/images/additionalDelay1Hour.png -------------------------------------------------------------------------------- /assets/images/additionalDelay2Days.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coopcycle/coopcycle-docs/HEAD/assets/images/additionalDelay2Days.png -------------------------------------------------------------------------------- /assets/images/additionalDelay2Hours.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coopcycle/coopcycle-docs/HEAD/assets/images/additionalDelay2Hours.png -------------------------------------------------------------------------------- /assets/images/admin_settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coopcycle/coopcycle-docs/HEAD/assets/images/admin_settings.png -------------------------------------------------------------------------------- /assets/images/apikey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coopcycle/coopcycle-docs/HEAD/assets/images/apikey.png -------------------------------------------------------------------------------- /assets/images/app-custom-server.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coopcycle/coopcycle-docs/HEAD/assets/images/app-custom-server.gif -------------------------------------------------------------------------------- /assets/images/appAddProofOfDeliverySignatureAndPhoto.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coopcycle/coopcycle-docs/HEAD/assets/images/appAddProofOfDeliverySignatureAndPhoto.gif -------------------------------------------------------------------------------- /assets/images/appAddTaskDatePicker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coopcycle/coopcycle-docs/HEAD/assets/images/appAddTaskDatePicker.png -------------------------------------------------------------------------------- /assets/images/appAddTaskScreen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coopcycle/coopcycle-docs/HEAD/assets/images/appAddTaskScreen.png -------------------------------------------------------------------------------- /assets/images/appAddVoucherCode.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coopcycle/coopcycle-docs/HEAD/assets/images/appAddVoucherCode.gif -------------------------------------------------------------------------------- /assets/images/appAssignTaskSwipe.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coopcycle/coopcycle-docs/HEAD/assets/images/appAssignTaskSwipe.gif -------------------------------------------------------------------------------- /assets/images/appAssignTaskToMe.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coopcycle/coopcycle-docs/HEAD/assets/images/appAssignTaskToMe.gif -------------------------------------------------------------------------------- /assets/images/appAssignTasksFromCourier.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coopcycle/coopcycle-docs/HEAD/assets/images/appAssignTasksFromCourier.gif -------------------------------------------------------------------------------- /assets/images/appCancelOrder.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coopcycle/coopcycle-docs/HEAD/assets/images/appCancelOrder.gif -------------------------------------------------------------------------------- /assets/images/appCancelOrderAfterAccepted.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coopcycle/coopcycle-docs/HEAD/assets/images/appCancelOrderAfterAccepted.gif -------------------------------------------------------------------------------- /assets/images/appChangeAddress.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coopcycle/coopcycle-docs/HEAD/assets/images/appChangeAddress.gif -------------------------------------------------------------------------------- /assets/images/appChangeRecipientName.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coopcycle/coopcycle-docs/HEAD/assets/images/appChangeRecipientName.gif -------------------------------------------------------------------------------- /assets/images/appCluster.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coopcycle/coopcycle-docs/HEAD/assets/images/appCluster.gif -------------------------------------------------------------------------------- /assets/images/appCourierMainScreen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coopcycle/coopcycle-docs/HEAD/assets/images/appCourierMainScreen.png -------------------------------------------------------------------------------- /assets/images/appDispatchMainScreen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coopcycle/coopcycle-docs/HEAD/assets/images/appDispatchMainScreen.png -------------------------------------------------------------------------------- /assets/images/appFulfillTaskAndSignature.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coopcycle/coopcycle-docs/HEAD/assets/images/appFulfillTaskAndSignature.gif -------------------------------------------------------------------------------- /assets/images/appFulfillTaskFromMap.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coopcycle/coopcycle-docs/HEAD/assets/images/appFulfillTaskFromMap.gif -------------------------------------------------------------------------------- /assets/images/appFulfillTaskFromTaskList.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coopcycle/coopcycle-docs/HEAD/assets/images/appFulfillTaskFromTaskList.gif -------------------------------------------------------------------------------- /assets/images/appMainScreenResto.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coopcycle/coopcycle-docs/HEAD/assets/images/appMainScreenResto.png -------------------------------------------------------------------------------- /assets/images/appMarkTaskAsFailed.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coopcycle/coopcycle-docs/HEAD/assets/images/appMarkTaskAsFailed.gif -------------------------------------------------------------------------------- /assets/images/appMarkTaskAsFailedFromMap.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coopcycle/coopcycle-docs/HEAD/assets/images/appMarkTaskAsFailedFromMap.gif -------------------------------------------------------------------------------- /assets/images/appNewOrderAndAccept.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coopcycle/coopcycle-docs/HEAD/assets/images/appNewOrderAndAccept.gif -------------------------------------------------------------------------------- /assets/images/appOrderCollectedByCourier.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coopcycle/coopcycle-docs/HEAD/assets/images/appOrderCollectedByCourier.gif -------------------------------------------------------------------------------- /assets/images/appOrderFulfilled.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coopcycle/coopcycle-docs/HEAD/assets/images/appOrderFulfilled.gif -------------------------------------------------------------------------------- /assets/images/appPlaceAnOrder.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coopcycle/coopcycle-docs/HEAD/assets/images/appPlaceAnOrder.gif -------------------------------------------------------------------------------- /assets/images/appRestoSettings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coopcycle/coopcycle-docs/HEAD/assets/images/appRestoSettings.png -------------------------------------------------------------------------------- /assets/images/appSelectDeliveryTime.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coopcycle/coopcycle-docs/HEAD/assets/images/appSelectDeliveryTime.gif -------------------------------------------------------------------------------- /assets/images/cantenabledthisrestoyet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coopcycle/coopcycle-docs/HEAD/assets/images/cantenabledthisrestoyet.png -------------------------------------------------------------------------------- /assets/images/config_pricing_fr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coopcycle/coopcycle-docs/HEAD/assets/images/config_pricing_fr.png -------------------------------------------------------------------------------- /assets/images/configurationSettings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coopcycle/coopcycle-docs/HEAD/assets/images/configurationSettings.png -------------------------------------------------------------------------------- /assets/images/connectCoopStripeTestMode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coopcycle/coopcycle-docs/HEAD/assets/images/connectCoopStripeTestMode.png -------------------------------------------------------------------------------- /assets/images/connectMyStripeAccountButton.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coopcycle/coopcycle-docs/HEAD/assets/images/connectMyStripeAccountButton.png -------------------------------------------------------------------------------- /assets/images/create-resto-en-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coopcycle/coopcycle-docs/HEAD/assets/images/create-resto-en-1.png -------------------------------------------------------------------------------- /assets/images/createAPolygoneZone.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coopcycle/coopcycle-docs/HEAD/assets/images/createAPolygoneZone.gif -------------------------------------------------------------------------------- /assets/images/createrestaurant.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coopcycle/coopcycle-docs/HEAD/assets/images/createrestaurant.png -------------------------------------------------------------------------------- /assets/images/creation_resto_fr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coopcycle/coopcycle-docs/HEAD/assets/images/creation_resto_fr.png -------------------------------------------------------------------------------- /assets/images/deliveryLinkInfo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coopcycle/coopcycle-docs/HEAD/assets/images/deliveryLinkInfo.png -------------------------------------------------------------------------------- /assets/images/deliveryTimeSlotRemove.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coopcycle/coopcycle-docs/HEAD/assets/images/deliveryTimeSlotRemove.png -------------------------------------------------------------------------------- /assets/images/deliveryTimeSlotSave.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coopcycle/coopcycle-docs/HEAD/assets/images/deliveryTimeSlotSave.png -------------------------------------------------------------------------------- /assets/images/deliveryTimeSlotsAdd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coopcycle/coopcycle-docs/HEAD/assets/images/deliveryTimeSlotsAdd.png -------------------------------------------------------------------------------- /assets/images/deliveryTimeSlotsSelected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coopcycle/coopcycle-docs/HEAD/assets/images/deliveryTimeSlotsSelected.png -------------------------------------------------------------------------------- /assets/images/deliveryTimeSlotsSelectedWeekend.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coopcycle/coopcycle-docs/HEAD/assets/images/deliveryTimeSlotsSelectedWeekend.png -------------------------------------------------------------------------------- /assets/images/enableDepositMoreOptionsDepRefund.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coopcycle/coopcycle-docs/HEAD/assets/images/enableDepositMoreOptionsDepRefund.png -------------------------------------------------------------------------------- /assets/images/enablerestotoggle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coopcycle/coopcycle-docs/HEAD/assets/images/enablerestotoggle.png -------------------------------------------------------------------------------- /assets/images/foodtech_dashboard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coopcycle/coopcycle-docs/HEAD/assets/images/foodtech_dashboard.png -------------------------------------------------------------------------------- /assets/images/fullscreen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coopcycle/coopcycle-docs/HEAD/assets/images/fullscreen.png -------------------------------------------------------------------------------- /assets/images/generalsettingsresto.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coopcycle/coopcycle-docs/HEAD/assets/images/generalsettingsresto.png -------------------------------------------------------------------------------- /assets/images/geoloc_icone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coopcycle/coopcycle-docs/HEAD/assets/images/geoloc_icone.png -------------------------------------------------------------------------------- /assets/images/google-key-restrictions.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coopcycle/coopcycle-docs/HEAD/assets/images/google-key-restrictions.png -------------------------------------------------------------------------------- /assets/images/google-settings.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coopcycle/coopcycle-docs/HEAD/assets/images/google-settings.gif -------------------------------------------------------------------------------- /assets/images/google1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coopcycle/coopcycle-docs/HEAD/assets/images/google1.png -------------------------------------------------------------------------------- /assets/images/google10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coopcycle/coopcycle-docs/HEAD/assets/images/google10.png -------------------------------------------------------------------------------- /assets/images/google11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coopcycle/coopcycle-docs/HEAD/assets/images/google11.png -------------------------------------------------------------------------------- /assets/images/google12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coopcycle/coopcycle-docs/HEAD/assets/images/google12.png -------------------------------------------------------------------------------- /assets/images/google1a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coopcycle/coopcycle-docs/HEAD/assets/images/google1a.png -------------------------------------------------------------------------------- /assets/images/google1b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coopcycle/coopcycle-docs/HEAD/assets/images/google1b.png -------------------------------------------------------------------------------- /assets/images/google1c.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coopcycle/coopcycle-docs/HEAD/assets/images/google1c.png -------------------------------------------------------------------------------- /assets/images/google2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coopcycle/coopcycle-docs/HEAD/assets/images/google2.png -------------------------------------------------------------------------------- /assets/images/google3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coopcycle/coopcycle-docs/HEAD/assets/images/google3.png -------------------------------------------------------------------------------- /assets/images/google4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coopcycle/coopcycle-docs/HEAD/assets/images/google4.png -------------------------------------------------------------------------------- /assets/images/google5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coopcycle/coopcycle-docs/HEAD/assets/images/google5.png -------------------------------------------------------------------------------- /assets/images/google6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coopcycle/coopcycle-docs/HEAD/assets/images/google6.png -------------------------------------------------------------------------------- /assets/images/google7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coopcycle/coopcycle-docs/HEAD/assets/images/google7.png -------------------------------------------------------------------------------- /assets/images/google8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coopcycle/coopcycle-docs/HEAD/assets/images/google8.png -------------------------------------------------------------------------------- /assets/images/google9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coopcycle/coopcycle-docs/HEAD/assets/images/google9.png -------------------------------------------------------------------------------- /assets/images/hourlySlotsCart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coopcycle/coopcycle-docs/HEAD/assets/images/hourlySlotsCart.png -------------------------------------------------------------------------------- /assets/images/hourlySlotsPopup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coopcycle/coopcycle-docs/HEAD/assets/images/hourlySlotsPopup.png -------------------------------------------------------------------------------- /assets/images/how_to_set_up_a_product.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coopcycle/coopcycle-docs/HEAD/assets/images/how_to_set_up_a_product.png -------------------------------------------------------------------------------- /assets/images/hubCreateHubs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coopcycle/coopcycle-docs/HEAD/assets/images/hubCreateHubs.png -------------------------------------------------------------------------------- /assets/images/hubNameHub.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coopcycle/coopcycle-docs/HEAD/assets/images/hubNameHub.png -------------------------------------------------------------------------------- /assets/images/hubSelectHubs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coopcycle/coopcycle-docs/HEAD/assets/images/hubSelectHubs.png -------------------------------------------------------------------------------- /assets/images/hubSelectRestos.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coopcycle/coopcycle-docs/HEAD/assets/images/hubSelectRestos.png -------------------------------------------------------------------------------- /assets/images/invoicing_16.24.02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coopcycle/coopcycle-docs/HEAD/assets/images/invoicing_16.24.02.png -------------------------------------------------------------------------------- /assets/images/invoicing_16.24.11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coopcycle/coopcycle-docs/HEAD/assets/images/invoicing_16.24.11.png -------------------------------------------------------------------------------- /assets/images/invoicing_16.24.19.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coopcycle/coopcycle-docs/HEAD/assets/images/invoicing_16.24.19.png -------------------------------------------------------------------------------- /assets/images/invoicing_16.24.26.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coopcycle/coopcycle-docs/HEAD/assets/images/invoicing_16.24.26.png -------------------------------------------------------------------------------- /assets/images/invoicing_16.24.55.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coopcycle/coopcycle-docs/HEAD/assets/images/invoicing_16.24.55.png -------------------------------------------------------------------------------- /assets/images/invoicing_16.25.02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coopcycle/coopcycle-docs/HEAD/assets/images/invoicing_16.25.02.png -------------------------------------------------------------------------------- /assets/images/invoicing_16.25.14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coopcycle/coopcycle-docs/HEAD/assets/images/invoicing_16.25.14.png -------------------------------------------------------------------------------- /assets/images/invoicing_16.25.31.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coopcycle/coopcycle-docs/HEAD/assets/images/invoicing_16.25.31.png -------------------------------------------------------------------------------- /assets/images/invoicing_16.25.42.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coopcycle/coopcycle-docs/HEAD/assets/images/invoicing_16.25.42.png -------------------------------------------------------------------------------- /assets/images/invoicing_16.25.50.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coopcycle/coopcycle-docs/HEAD/assets/images/invoicing_16.25.50.png -------------------------------------------------------------------------------- /assets/images/invoicing_16.57.49.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coopcycle/coopcycle-docs/HEAD/assets/images/invoicing_16.57.49.png -------------------------------------------------------------------------------- /assets/images/invoicing_16.59.02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coopcycle/coopcycle-docs/HEAD/assets/images/invoicing_16.59.02.png -------------------------------------------------------------------------------- /assets/images/invoicing_16.59.30.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coopcycle/coopcycle-docs/HEAD/assets/images/invoicing_16.59.30.png -------------------------------------------------------------------------------- /assets/images/invoicing_17.05.08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coopcycle/coopcycle-docs/HEAD/assets/images/invoicing_17.05.08.png -------------------------------------------------------------------------------- /assets/images/invoicing_17.05.20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coopcycle/coopcycle-docs/HEAD/assets/images/invoicing_17.05.20.png -------------------------------------------------------------------------------- /assets/images/invoicing_17.20.25.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coopcycle/coopcycle-docs/HEAD/assets/images/invoicing_17.20.25.png -------------------------------------------------------------------------------- /assets/images/invoicing_17.20.36.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coopcycle/coopcycle-docs/HEAD/assets/images/invoicing_17.20.36.png -------------------------------------------------------------------------------- /assets/images/invoicing_17.25.40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coopcycle/coopcycle-docs/HEAD/assets/images/invoicing_17.25.40.png -------------------------------------------------------------------------------- /assets/images/invoicing_17.31.38.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coopcycle/coopcycle-docs/HEAD/assets/images/invoicing_17.31.38.png -------------------------------------------------------------------------------- /assets/images/invoicing_17.31.46.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coopcycle/coopcycle-docs/HEAD/assets/images/invoicing_17.31.46.png -------------------------------------------------------------------------------- /assets/images/jkbrztRrule.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coopcycle/coopcycle-docs/HEAD/assets/images/jkbrztRrule.png -------------------------------------------------------------------------------- /assets/images/list_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coopcycle/coopcycle-docs/HEAD/assets/images/list_icon.png -------------------------------------------------------------------------------- /assets/images/livraisons_fr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coopcycle/coopcycle-docs/HEAD/assets/images/livraisons_fr.png -------------------------------------------------------------------------------- /assets/images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coopcycle/coopcycle-docs/HEAD/assets/images/logo.png -------------------------------------------------------------------------------- /assets/images/mediapart.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coopcycle/coopcycle-docs/HEAD/assets/images/mediapart.svg -------------------------------------------------------------------------------- /assets/images/menus_fr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coopcycle/coopcycle-docs/HEAD/assets/images/menus_fr.png -------------------------------------------------------------------------------- /assets/images/multipleDeliveryTimeSlots.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coopcycle/coopcycle-docs/HEAD/assets/images/multipleDeliveryTimeSlots.png -------------------------------------------------------------------------------- /assets/images/nrf_connect_device.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coopcycle/coopcycle-docs/HEAD/assets/images/nrf_connect_device.png -------------------------------------------------------------------------------- /assets/images/nrf_connect_device_unfolded.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coopcycle/coopcycle-docs/HEAD/assets/images/nrf_connect_device_unfolded.png -------------------------------------------------------------------------------- /assets/images/nrf_connect_scan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coopcycle/coopcycle-docs/HEAD/assets/images/nrf_connect_scan.png -------------------------------------------------------------------------------- /assets/images/option_fr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coopcycle/coopcycle-docs/HEAD/assets/images/option_fr.png -------------------------------------------------------------------------------- /assets/images/orders_fr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coopcycle/coopcycle-docs/HEAD/assets/images/orders_fr.png -------------------------------------------------------------------------------- /assets/images/package_config.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coopcycle/coopcycle-docs/HEAD/assets/images/package_config.png -------------------------------------------------------------------------------- /assets/images/package_order.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coopcycle/coopcycle-docs/HEAD/assets/images/package_order.png -------------------------------------------------------------------------------- /assets/images/package_pricing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coopcycle/coopcycle-docs/HEAD/assets/images/package_pricing.png -------------------------------------------------------------------------------- /assets/images/param_pricing_fr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coopcycle/coopcycle-docs/HEAD/assets/images/param_pricing_fr.png -------------------------------------------------------------------------------- /assets/images/peek_geojson.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coopcycle/coopcycle-docs/HEAD/assets/images/peek_geojson.gif -------------------------------------------------------------------------------- /assets/images/photo_proof_en.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coopcycle/coopcycle-docs/HEAD/assets/images/photo_proof_en.png -------------------------------------------------------------------------------- /assets/images/photo_proof_fr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coopcycle/coopcycle-docs/HEAD/assets/images/photo_proof_fr.png -------------------------------------------------------------------------------- /assets/images/php-logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coopcycle/coopcycle-docs/HEAD/assets/images/php-logo.svg -------------------------------------------------------------------------------- /assets/images/polygoonIconGeoJsonDotIo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coopcycle/coopcycle-docs/HEAD/assets/images/polygoonIconGeoJsonDotIo.png -------------------------------------------------------------------------------- /assets/images/prestashop_shopping_cart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coopcycle/coopcycle-docs/HEAD/assets/images/prestashop_shopping_cart.png -------------------------------------------------------------------------------- /assets/images/pricingAllMatchingRules.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coopcycle/coopcycle-docs/HEAD/assets/images/pricingAllMatchingRules.png -------------------------------------------------------------------------------- /assets/images/pricingFirstMatchingRule.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coopcycle/coopcycle-docs/HEAD/assets/images/pricingFirstMatchingRule.png -------------------------------------------------------------------------------- /assets/images/pricingFirstRulePlusFixedPrice.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coopcycle/coopcycle-docs/HEAD/assets/images/pricingFirstRulePlusFixedPrice.png -------------------------------------------------------------------------------- /assets/images/pricingPricingRule.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coopcycle/coopcycle-docs/HEAD/assets/images/pricingPricingRule.png -------------------------------------------------------------------------------- /assets/images/pricing_debug_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coopcycle/coopcycle-docs/HEAD/assets/images/pricing_debug_2.png -------------------------------------------------------------------------------- /assets/images/productsettings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coopcycle/coopcycle-docs/HEAD/assets/images/productsettings.png -------------------------------------------------------------------------------- /assets/images/proof_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coopcycle/coopcycle-docs/HEAD/assets/images/proof_icon.png -------------------------------------------------------------------------------- /assets/images/ps_carrier_config.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coopcycle/coopcycle-docs/HEAD/assets/images/ps_carrier_config.gif -------------------------------------------------------------------------------- /assets/images/recurrenceRulesDelete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coopcycle/coopcycle-docs/HEAD/assets/images/recurrenceRulesDelete.png -------------------------------------------------------------------------------- /assets/images/recurrenceRulesList.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coopcycle/coopcycle-docs/HEAD/assets/images/recurrenceRulesList.png -------------------------------------------------------------------------------- /assets/images/recurrenceRulesOverride.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coopcycle/coopcycle-docs/HEAD/assets/images/recurrenceRulesOverride.png -------------------------------------------------------------------------------- /assets/images/recurrenceRulesSetup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coopcycle/coopcycle-docs/HEAD/assets/images/recurrenceRulesSetup.png -------------------------------------------------------------------------------- /assets/images/recurrenceRulesUsage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coopcycle/coopcycle-docs/HEAD/assets/images/recurrenceRulesUsage.png -------------------------------------------------------------------------------- /assets/images/restaurant_detail_fr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coopcycle/coopcycle-docs/HEAD/assets/images/restaurant_detail_fr.png -------------------------------------------------------------------------------- /assets/images/restoGeneralAndProductSettings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coopcycle/coopcycle-docs/HEAD/assets/images/restoGeneralAndProductSettings.png -------------------------------------------------------------------------------- /assets/images/resto_close_banner_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coopcycle/coopcycle-docs/HEAD/assets/images/resto_close_banner_icon.png -------------------------------------------------------------------------------- /assets/images/resto_closed_banner_fr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coopcycle/coopcycle-docs/HEAD/assets/images/resto_closed_banner_fr.png -------------------------------------------------------------------------------- /assets/images/resto_date_fr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coopcycle/coopcycle-docs/HEAD/assets/images/resto_date_fr.png -------------------------------------------------------------------------------- /assets/images/resto_order_list_fr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coopcycle/coopcycle-docs/HEAD/assets/images/resto_order_list_fr.png -------------------------------------------------------------------------------- /assets/images/resto_param_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coopcycle/coopcycle-docs/HEAD/assets/images/resto_param_icon.png -------------------------------------------------------------------------------- /assets/images/resto_power_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coopcycle/coopcycle-docs/HEAD/assets/images/resto_power_icon.png -------------------------------------------------------------------------------- /assets/images/resto_refresh_btn_fr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coopcycle/coopcycle-docs/HEAD/assets/images/resto_refresh_btn_fr.png -------------------------------------------------------------------------------- /assets/images/savedOrdersList.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coopcycle/coopcycle-docs/HEAD/assets/images/savedOrdersList.png -------------------------------------------------------------------------------- /assets/images/savedOrdersSetup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coopcycle/coopcycle-docs/HEAD/assets/images/savedOrdersSetup.png -------------------------------------------------------------------------------- /assets/images/savedOrdersUsage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coopcycle/coopcycle-docs/HEAD/assets/images/savedOrdersUsage.png -------------------------------------------------------------------------------- /assets/images/send_signature_en.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coopcycle/coopcycle-docs/HEAD/assets/images/send_signature_en.png -------------------------------------------------------------------------------- /assets/images/send_signature_fr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coopcycle/coopcycle-docs/HEAD/assets/images/send_signature_fr.png -------------------------------------------------------------------------------- /assets/images/shippingChoices2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coopcycle/coopcycle-docs/HEAD/assets/images/shippingChoices2.png -------------------------------------------------------------------------------- /assets/images/shippingChoices3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coopcycle/coopcycle-docs/HEAD/assets/images/shippingChoices3.png -------------------------------------------------------------------------------- /assets/images/slotApprox15Minutes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coopcycle/coopcycle-docs/HEAD/assets/images/slotApprox15Minutes.png -------------------------------------------------------------------------------- /assets/images/slotApprox5Minutes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coopcycle/coopcycle-docs/HEAD/assets/images/slotApprox5Minutes.png -------------------------------------------------------------------------------- /assets/images/store_settings_en.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coopcycle/coopcycle-docs/HEAD/assets/images/store_settings_en.png -------------------------------------------------------------------------------- /assets/images/stripeAPIkeys.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coopcycle/coopcycle-docs/HEAD/assets/images/stripeAPIkeys.png -------------------------------------------------------------------------------- /assets/images/stripeAccountTypes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coopcycle/coopcycle-docs/HEAD/assets/images/stripeAccountTypes.png -------------------------------------------------------------------------------- /assets/images/stripeActivateAccount.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coopcycle/coopcycle-docs/HEAD/assets/images/stripeActivateAccount.png -------------------------------------------------------------------------------- /assets/images/stripeActivateYourAccount.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coopcycle/coopcycle-docs/HEAD/assets/images/stripeActivateYourAccount.png -------------------------------------------------------------------------------- /assets/images/stripeAddURI.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coopcycle/coopcycle-docs/HEAD/assets/images/stripeAddURI.png -------------------------------------------------------------------------------- /assets/images/stripeBusinessStructure.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coopcycle/coopcycle-docs/HEAD/assets/images/stripeBusinessStructure.png -------------------------------------------------------------------------------- /assets/images/stripeConnectAddURI.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coopcycle/coopcycle-docs/HEAD/assets/images/stripeConnectAddURI.png -------------------------------------------------------------------------------- /assets/images/stripeConnectGetStarted.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coopcycle/coopcycle-docs/HEAD/assets/images/stripeConnectGetStarted.png -------------------------------------------------------------------------------- /assets/images/stripeConnectPlatformMarketplace.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coopcycle/coopcycle-docs/HEAD/assets/images/stripeConnectPlatformMarketplace.png -------------------------------------------------------------------------------- /assets/images/stripeConnectPlatformProfileLiveMode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coopcycle/coopcycle-docs/HEAD/assets/images/stripeConnectPlatformProfileLiveMode.png -------------------------------------------------------------------------------- /assets/images/stripeConnectTestCliendID.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coopcycle/coopcycle-docs/HEAD/assets/images/stripeConnectTestCliendID.png -------------------------------------------------------------------------------- /assets/images/stripeDeselectAllCountries.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coopcycle/coopcycle-docs/HEAD/assets/images/stripeDeselectAllCountries.png -------------------------------------------------------------------------------- /assets/images/stripeEnableOAuth.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coopcycle/coopcycle-docs/HEAD/assets/images/stripeEnableOAuth.png -------------------------------------------------------------------------------- /assets/images/stripeNewAccount.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coopcycle/coopcycle-docs/HEAD/assets/images/stripeNewAccount.png -------------------------------------------------------------------------------- /assets/images/stripePlatformProfileCustomerPurchaseProducts.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coopcycle/coopcycle-docs/HEAD/assets/images/stripePlatformProfileCustomerPurchaseProducts.png -------------------------------------------------------------------------------- /assets/images/stripePlatformProfileOnDemandServices.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coopcycle/coopcycle-docs/HEAD/assets/images/stripePlatformProfileOnDemandServices.png -------------------------------------------------------------------------------- /assets/images/stripePlatformProfileTransactionNameCustomerStatement.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coopcycle/coopcycle-docs/HEAD/assets/images/stripePlatformProfileTransactionNameCustomerStatement.png -------------------------------------------------------------------------------- /assets/images/stripeRestoAccountName.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coopcycle/coopcycle-docs/HEAD/assets/images/stripeRestoAccountName.png -------------------------------------------------------------------------------- /assets/images/stripeRestoManageAccount.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coopcycle/coopcycle-docs/HEAD/assets/images/stripeRestoManageAccount.png -------------------------------------------------------------------------------- /assets/images/stripeTest.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coopcycle/coopcycle-docs/HEAD/assets/images/stripeTest.png -------------------------------------------------------------------------------- /assets/images/stripeTestChooseResto.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coopcycle/coopcycle-docs/HEAD/assets/images/stripeTestChooseResto.png -------------------------------------------------------------------------------- /assets/images/stripeTestSkip.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coopcycle/coopcycle-docs/HEAD/assets/images/stripeTestSkip.png -------------------------------------------------------------------------------- /assets/images/stripeVerifyYourEmail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coopcycle/coopcycle-docs/HEAD/assets/images/stripeVerifyYourEmail.png -------------------------------------------------------------------------------- /assets/images/stripe_resto_account_fr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coopcycle/coopcycle-docs/HEAD/assets/images/stripe_resto_account_fr.png -------------------------------------------------------------------------------- /assets/images/stripe_resto_account_fr_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coopcycle/coopcycle-docs/HEAD/assets/images/stripe_resto_account_fr_2.png -------------------------------------------------------------------------------- /assets/images/stripe_resto_account_fr_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coopcycle/coopcycle-docs/HEAD/assets/images/stripe_resto_account_fr_3.png -------------------------------------------------------------------------------- /assets/images/stripe_resto_account_fr_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coopcycle/coopcycle-docs/HEAD/assets/images/stripe_resto_account_fr_4.png -------------------------------------------------------------------------------- /assets/images/stripe_resto_account_fr_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coopcycle/coopcycle-docs/HEAD/assets/images/stripe_resto_account_fr_5.png -------------------------------------------------------------------------------- /assets/images/task_issue_en.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coopcycle/coopcycle-docs/HEAD/assets/images/task_issue_en.png -------------------------------------------------------------------------------- /assets/images/task_issue_fr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coopcycle/coopcycle-docs/HEAD/assets/images/task_issue_fr.png -------------------------------------------------------------------------------- /assets/images/task_list_en.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coopcycle/coopcycle-docs/HEAD/assets/images/task_list_en.png -------------------------------------------------------------------------------- /assets/images/task_list_fr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coopcycle/coopcycle-docs/HEAD/assets/images/task_list_fr.png -------------------------------------------------------------------------------- /assets/images/task_validation_en.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coopcycle/coopcycle-docs/HEAD/assets/images/task_validation_en.png -------------------------------------------------------------------------------- /assets/images/task_validation_fr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coopcycle/coopcycle-docs/HEAD/assets/images/task_validation_fr.png -------------------------------------------------------------------------------- /assets/images/time_slot_dropdown_en.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coopcycle/coopcycle-docs/HEAD/assets/images/time_slot_dropdown_en.png -------------------------------------------------------------------------------- /assets/images/time_slots_en.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coopcycle/coopcycle-docs/HEAD/assets/images/time_slots_en.png -------------------------------------------------------------------------------- /assets/images/toggleStripeViewTestData.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coopcycle/coopcycle-docs/HEAD/assets/images/toggleStripeViewTestData.png -------------------------------------------------------------------------------- /assets/images/woop_new_integration.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coopcycle/coopcycle-docs/HEAD/assets/images/woop_new_integration.png -------------------------------------------------------------------------------- /assets/scripts/zoom.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coopcycle/coopcycle-docs/HEAD/assets/scripts/zoom.js -------------------------------------------------------------------------------- /docs.sublime-project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coopcycle/coopcycle-docs/HEAD/docs.sublime-project -------------------------------------------------------------------------------- /docs.sublime-workspace: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coopcycle/coopcycle-docs/HEAD/docs.sublime-workspace -------------------------------------------------------------------------------- /docs/_admin/Incidents.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coopcycle/coopcycle-docs/HEAD/docs/_admin/Incidents.md -------------------------------------------------------------------------------- /docs/_admin/customise.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coopcycle/coopcycle-docs/HEAD/docs/_admin/customise.md -------------------------------------------------------------------------------- /docs/_admin/data-analytics.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coopcycle/coopcycle-docs/HEAD/docs/_admin/data-analytics.md -------------------------------------------------------------------------------- /docs/_admin/enable-places-new.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coopcycle/coopcycle-docs/HEAD/docs/_admin/enable-places-new.md -------------------------------------------------------------------------------- /docs/_admin/google.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coopcycle/coopcycle-docs/HEAD/docs/_admin/google.md -------------------------------------------------------------------------------- /docs/_admin/intro.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coopcycle/coopcycle-docs/HEAD/docs/_admin/intro.md -------------------------------------------------------------------------------- /docs/_admin/invoicing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coopcycle/coopcycle-docs/HEAD/docs/_admin/invoicing.md -------------------------------------------------------------------------------- /docs/_admin/pricing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coopcycle/coopcycle-docs/HEAD/docs/_admin/pricing.md -------------------------------------------------------------------------------- /docs/_admin/pricing_basics.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coopcycle/coopcycle-docs/HEAD/docs/_admin/pricing_basics.md -------------------------------------------------------------------------------- /docs/_admin/pricing_complex.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coopcycle/coopcycle-docs/HEAD/docs/_admin/pricing_complex.md -------------------------------------------------------------------------------- /docs/_admin/pricing_examples.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coopcycle/coopcycle-docs/HEAD/docs/_admin/pricing_examples.md -------------------------------------------------------------------------------- /docs/_admin/pricing_introduction.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coopcycle/coopcycle-docs/HEAD/docs/_admin/pricing_introduction.md -------------------------------------------------------------------------------- /docs/_admin/pricing_lastmile.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coopcycle/coopcycle-docs/HEAD/docs/_admin/pricing_lastmile.md -------------------------------------------------------------------------------- /docs/_admin/pricing_method_of_calculation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coopcycle/coopcycle-docs/HEAD/docs/_admin/pricing_method_of_calculation.md -------------------------------------------------------------------------------- /docs/_admin/pricing_multi_dropoff.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coopcycle/coopcycle-docs/HEAD/docs/_admin/pricing_multi_dropoff.md -------------------------------------------------------------------------------- /docs/_admin/pricing_old_school.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coopcycle/coopcycle-docs/HEAD/docs/_admin/pricing_old_school.md -------------------------------------------------------------------------------- /docs/_admin/pricing_rule.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coopcycle/coopcycle-docs/HEAD/docs/_admin/pricing_rule.md -------------------------------------------------------------------------------- /docs/_admin/pricing_testing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coopcycle/coopcycle-docs/HEAD/docs/_admin/pricing_testing.md -------------------------------------------------------------------------------- /docs/_admin/users.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coopcycle/coopcycle-docs/HEAD/docs/_admin/users.md -------------------------------------------------------------------------------- /docs/_admin/woop.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coopcycle/coopcycle-docs/HEAD/docs/_admin/woop.md -------------------------------------------------------------------------------- /docs/_app/bluetooth-printers.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coopcycle/coopcycle-docs/HEAD/docs/_app/bluetooth-printers.md -------------------------------------------------------------------------------- /docs/_app/courier.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coopcycle/coopcycle-docs/HEAD/docs/_app/courier.md -------------------------------------------------------------------------------- /docs/_app/customer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coopcycle/coopcycle-docs/HEAD/docs/_app/customer.md -------------------------------------------------------------------------------- /docs/_app/dispatcher.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coopcycle/coopcycle-docs/HEAD/docs/_app/dispatcher.html -------------------------------------------------------------------------------- /docs/_app/dispatcher.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coopcycle/coopcycle-docs/HEAD/docs/_app/dispatcher.md -------------------------------------------------------------------------------- /docs/_app/install.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coopcycle/coopcycle-docs/HEAD/docs/_app/install.md -------------------------------------------------------------------------------- /docs/_app/restaurant.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coopcycle/coopcycle-docs/HEAD/docs/_app/restaurant.md -------------------------------------------------------------------------------- /docs/_developer/api.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coopcycle/coopcycle-docs/HEAD/docs/_developer/api.md -------------------------------------------------------------------------------- /docs/_developer/deliveries.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coopcycle/coopcycle-docs/HEAD/docs/_developer/deliveries.md -------------------------------------------------------------------------------- /docs/_developer/plugins.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coopcycle/coopcycle-docs/HEAD/docs/_developer/plugins.md -------------------------------------------------------------------------------- /docs/_developer/prestashop.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coopcycle/coopcycle-docs/HEAD/docs/_developer/prestashop.md -------------------------------------------------------------------------------- /docs/_developer/retail-prices.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coopcycle/coopcycle-docs/HEAD/docs/_developer/retail-prices.md -------------------------------------------------------------------------------- /docs/_developer/time-slots.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coopcycle/coopcycle-docs/HEAD/docs/_developer/time-slots.md -------------------------------------------------------------------------------- /docs/_developer/webhooks.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coopcycle/coopcycle-docs/HEAD/docs/_developer/webhooks.md -------------------------------------------------------------------------------- /docs/_developer/wordpress.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coopcycle/coopcycle-docs/HEAD/docs/_developer/wordpress.md -------------------------------------------------------------------------------- /docs/_essentials/activities.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coopcycle/coopcycle-docs/HEAD/docs/_essentials/activities.md -------------------------------------------------------------------------------- /docs/_essentials/glossary.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coopcycle/coopcycle-docs/HEAD/docs/_essentials/glossary.md -------------------------------------------------------------------------------- /docs/_essentials/glossary/delivery.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coopcycle/coopcycle-docs/HEAD/docs/_essentials/glossary/delivery.md -------------------------------------------------------------------------------- /docs/_essentials/glossary/order.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coopcycle/coopcycle-docs/HEAD/docs/_essentials/glossary/order.md -------------------------------------------------------------------------------- /docs/_essentials/glossary/package.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coopcycle/coopcycle-docs/HEAD/docs/_essentials/glossary/package.md -------------------------------------------------------------------------------- /docs/_essentials/glossary/routes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coopcycle/coopcycle-docs/HEAD/docs/_essentials/glossary/routes.md -------------------------------------------------------------------------------- /docs/_essentials/glossary/shops.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coopcycle/coopcycle-docs/HEAD/docs/_essentials/glossary/shops.md -------------------------------------------------------------------------------- /docs/_essentials/glossary/store.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coopcycle/coopcycle-docs/HEAD/docs/_essentials/glossary/store.md -------------------------------------------------------------------------------- /docs/_essentials/glossary/task.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coopcycle/coopcycle-docs/HEAD/docs/_essentials/glossary/task.md -------------------------------------------------------------------------------- /docs/_essentials/glossary/time-slot.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coopcycle/coopcycle-docs/HEAD/docs/_essentials/glossary/time-slot.md -------------------------------------------------------------------------------- /docs/_food_tech/business-accounts.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coopcycle/coopcycle-docs/HEAD/docs/_food_tech/business-accounts.md -------------------------------------------------------------------------------- /docs/_food_tech/intro.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coopcycle/coopcycle-docs/HEAD/docs/_food_tech/intro.md -------------------------------------------------------------------------------- /docs/_food_tech/orders.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coopcycle/coopcycle-docs/HEAD/docs/_food_tech/orders.md -------------------------------------------------------------------------------- /docs/_food_tech/promotions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coopcycle/coopcycle-docs/HEAD/docs/_food_tech/promotions.md -------------------------------------------------------------------------------- /docs/_food_tech/refunds.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coopcycle/coopcycle-docs/HEAD/docs/_food_tech/refunds.md -------------------------------------------------------------------------------- /docs/_food_tech/restaurants.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coopcycle/coopcycle-docs/HEAD/docs/_food_tech/restaurants.md -------------------------------------------------------------------------------- /docs/_food_tech/restaurants/_includes/extras.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coopcycle/coopcycle-docs/HEAD/docs/_food_tech/restaurants/_includes/extras.md -------------------------------------------------------------------------------- /docs/_food_tech/restaurants/_includes/fulfillment.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coopcycle/coopcycle-docs/HEAD/docs/_food_tech/restaurants/_includes/fulfillment.md -------------------------------------------------------------------------------- /docs/_food_tech/restaurants/_includes/general.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coopcycle/coopcycle-docs/HEAD/docs/_food_tech/restaurants/_includes/general.md -------------------------------------------------------------------------------- /docs/_food_tech/restaurants/_includes/menus.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coopcycle/coopcycle-docs/HEAD/docs/_food_tech/restaurants/_includes/menus.md -------------------------------------------------------------------------------- /docs/_food_tech/restaurants/_includes/options.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coopcycle/coopcycle-docs/HEAD/docs/_food_tech/restaurants/_includes/options.md -------------------------------------------------------------------------------- /docs/_food_tech/restaurants/_includes/payment.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coopcycle/coopcycle-docs/HEAD/docs/_food_tech/restaurants/_includes/payment.md -------------------------------------------------------------------------------- /docs/_food_tech/restaurants/_includes/planning.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coopcycle/coopcycle-docs/HEAD/docs/_food_tech/restaurants/_includes/planning.md -------------------------------------------------------------------------------- /docs/_food_tech/restaurants/_includes/products.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coopcycle/coopcycle-docs/HEAD/docs/_food_tech/restaurants/_includes/products.md -------------------------------------------------------------------------------- /docs/_food_tech/restaurants/_includes/settlement.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coopcycle/coopcycle-docs/HEAD/docs/_food_tech/restaurants/_includes/settlement.md -------------------------------------------------------------------------------- /docs/_food_tech/restaurants/_includes/statistics.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coopcycle/coopcycle-docs/HEAD/docs/_food_tech/restaurants/_includes/statistics.md -------------------------------------------------------------------------------- /docs/_food_tech/restaurants/creating-a-restaurant.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coopcycle/coopcycle-docs/HEAD/docs/_food_tech/restaurants/creating-a-restaurant.md -------------------------------------------------------------------------------- /docs/_food_tech/restaurants/general-settings.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coopcycle/coopcycle-docs/HEAD/docs/_food_tech/restaurants/general-settings.md -------------------------------------------------------------------------------- /docs/_food_tech/restaurants/hubs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coopcycle/coopcycle-docs/HEAD/docs/_food_tech/restaurants/hubs.md -------------------------------------------------------------------------------- /docs/_food_tech/restaurants/product-settings.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coopcycle/coopcycle-docs/HEAD/docs/_food_tech/restaurants/product-settings.md -------------------------------------------------------------------------------- /docs/_food_tech/restaurants/product-settings/preparation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coopcycle/coopcycle-docs/HEAD/docs/_food_tech/restaurants/product-settings/preparation.md -------------------------------------------------------------------------------- /docs/_package_delivery/coopcycle-deliveries-simple-example.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coopcycle/coopcycle-docs/HEAD/docs/_package_delivery/coopcycle-deliveries-simple-example.csv -------------------------------------------------------------------------------- /docs/_package_delivery/excel-imports.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coopcycle/coopcycle-docs/HEAD/docs/_package_delivery/excel-imports.md -------------------------------------------------------------------------------- /docs/_package_delivery/intro.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coopcycle/coopcycle-docs/HEAD/docs/_package_delivery/intro.md -------------------------------------------------------------------------------- /docs/_package_delivery/last-mile.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coopcycle/coopcycle-docs/HEAD/docs/_package_delivery/last-mile.md -------------------------------------------------------------------------------- /docs/_package_delivery/last-mile/intro.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coopcycle/coopcycle-docs/HEAD/docs/_package_delivery/last-mile/intro.md -------------------------------------------------------------------------------- /docs/_package_delivery/local-commerce.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coopcycle/coopcycle-docs/HEAD/docs/_package_delivery/local-commerce.md -------------------------------------------------------------------------------- /docs/_package_delivery/local-commerce/intro.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coopcycle/coopcycle-docs/HEAD/docs/_package_delivery/local-commerce/intro.md -------------------------------------------------------------------------------- /docs/_package_delivery/local-commerce/recurrence-rules.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coopcycle/coopcycle-docs/HEAD/docs/_package_delivery/local-commerce/recurrence-rules.md -------------------------------------------------------------------------------- /docs/_package_delivery/local-commerce/recurring-orders.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coopcycle/coopcycle-docs/HEAD/docs/_package_delivery/local-commerce/recurring-orders.md -------------------------------------------------------------------------------- /docs/_package_delivery/local-commerce/saved-orders.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coopcycle/coopcycle-docs/HEAD/docs/_package_delivery/local-commerce/saved-orders.md -------------------------------------------------------------------------------- /docs/_package_delivery/orders.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coopcycle/coopcycle-docs/HEAD/docs/_package_delivery/orders.md -------------------------------------------------------------------------------- /docs/_payment_processors/mercadopago.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coopcycle/coopcycle-docs/HEAD/docs/_payment_processors/mercadopago.md -------------------------------------------------------------------------------- /docs/_payment_processors/stripe.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coopcycle/coopcycle-docs/HEAD/docs/_payment_processors/stripe.md -------------------------------------------------------------------------------- /docs/_payment_processors/stripeHiddenInfo.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coopcycle/coopcycle-docs/HEAD/docs/_payment_processors/stripeHiddenInfo.md -------------------------------------------------------------------------------- /docs/_payment_processors/test-mode.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coopcycle/coopcycle-docs/HEAD/docs/_payment_processors/test-mode.md -------------------------------------------------------------------------------- /docs/_web/admin.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coopcycle/coopcycle-docs/HEAD/docs/_web/admin.md -------------------------------------------------------------------------------- /docs/_web/admin/dashboard.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coopcycle/coopcycle-docs/HEAD/docs/_web/admin/dashboard.md -------------------------------------------------------------------------------- /docs/_web/admin/deliveries.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coopcycle/coopcycle-docs/HEAD/docs/_web/admin/deliveries.md -------------------------------------------------------------------------------- /docs/_web/admin/deliveries/api.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coopcycle/coopcycle-docs/HEAD/docs/_web/admin/deliveries/api.md -------------------------------------------------------------------------------- /docs/_web/admin/deliveries/externaldisplay.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coopcycle/coopcycle-docs/HEAD/docs/_web/admin/deliveries/externaldisplay.md -------------------------------------------------------------------------------- /docs/_web/admin/deliveries/failures.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coopcycle/coopcycle-docs/HEAD/docs/_web/admin/deliveries/failures.md -------------------------------------------------------------------------------- /docs/_web/admin/deliveries/incidents.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coopcycle/coopcycle-docs/HEAD/docs/_web/admin/deliveries/incidents.md -------------------------------------------------------------------------------- /docs/_web/admin/deliveries/integrations.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coopcycle/coopcycle-docs/HEAD/docs/_web/admin/deliveries/integrations.md -------------------------------------------------------------------------------- /docs/_web/admin/deliveries/invoicing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coopcycle/coopcycle-docs/HEAD/docs/_web/admin/deliveries/invoicing.md -------------------------------------------------------------------------------- /docs/_web/admin/deliveries/packages.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coopcycle/coopcycle-docs/HEAD/docs/_web/admin/deliveries/packages.md -------------------------------------------------------------------------------- /docs/_web/admin/deliveries/pricing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coopcycle/coopcycle-docs/HEAD/docs/_web/admin/deliveries/pricing.md -------------------------------------------------------------------------------- /docs/_web/admin/deliveries/stores.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coopcycle/coopcycle-docs/HEAD/docs/_web/admin/deliveries/stores.md -------------------------------------------------------------------------------- /docs/_web/admin/deliveries/tags.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coopcycle/coopcycle-docs/HEAD/docs/_web/admin/deliveries/tags.md -------------------------------------------------------------------------------- /docs/_web/admin/deliveries/timeslots.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coopcycle/coopcycle-docs/HEAD/docs/_web/admin/deliveries/timeslots.md -------------------------------------------------------------------------------- /docs/_web/admin/deliveries/vehicles.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coopcycle/coopcycle-docs/HEAD/docs/_web/admin/deliveries/vehicles.md -------------------------------------------------------------------------------- /docs/_web/admin/deliveries/warehouses.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coopcycle/coopcycle-docs/HEAD/docs/_web/admin/deliveries/warehouses.md -------------------------------------------------------------------------------- /docs/_web/admin/deliveries/zones.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coopcycle/coopcycle-docs/HEAD/docs/_web/admin/deliveries/zones.md -------------------------------------------------------------------------------- /docs/_web/admin/foodtech_dashboard.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coopcycle/coopcycle-docs/HEAD/docs/_web/admin/foodtech_dashboard.md -------------------------------------------------------------------------------- /docs/_web/admin/orders.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coopcycle/coopcycle-docs/HEAD/docs/_web/admin/orders.md -------------------------------------------------------------------------------- /docs/_web/admin/settings.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coopcycle/coopcycle-docs/HEAD/docs/_web/admin/settings.md -------------------------------------------------------------------------------- /docs/_web/admin/shops.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coopcycle/coopcycle-docs/HEAD/docs/_web/admin/shops.md -------------------------------------------------------------------------------- /docs/_web/admin/statistics.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coopcycle/coopcycle-docs/HEAD/docs/_web/admin/statistics.md -------------------------------------------------------------------------------- /docs/_web/admin/users.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coopcycle/coopcycle-docs/HEAD/docs/_web/admin/users.md -------------------------------------------------------------------------------- /favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coopcycle/coopcycle-docs/HEAD/favicon.ico -------------------------------------------------------------------------------- /index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coopcycle/coopcycle-docs/HEAD/index.md --------------------------------------------------------------------------------