From f0ebf97abca721ec32a23e585168b7338b08be9f Mon Sep 17 00:00:00 2001 From: Venkat Date: Thu, 27 Jun 2024 15:33:47 -0400 Subject: [PATCH] Bug fixes --- docs/CONTRIBUTING.rst | 2 ++ netlify.toml | 34 ---------------------------------- 2 files changed, 2 insertions(+), 34 deletions(-) delete mode 100644 netlify.toml diff --git a/docs/CONTRIBUTING.rst b/docs/CONTRIBUTING.rst index f682d62..487310c 100644 --- a/docs/CONTRIBUTING.rst +++ b/docs/CONTRIBUTING.rst @@ -9,6 +9,8 @@ By participating in this project you agree to abide by its terms. Overview -------- +The astro-provider-anyscale source code is available on this GitHub `page `_ + To contribute to the **Astro Anyscale** project: #. Please create a `GitHub Issue `_ describing your contribution. diff --git a/netlify.toml b/netlify.toml deleted file mode 100644 index 18bfb5c..0000000 --- a/netlify.toml +++ /dev/null @@ -1,34 +0,0 @@ -# Settings in the [build] context are global and are applied to -# all contexts unless otherwise overridden by more specific contexts. -[build] - # Directory to change to before starting a build. - base = "docs/" - - # Directory that contains the deploy-ready HTML files and - # assets generated by the build. This is relative to the base - # directory. - - publish = "_build/dirhtml" - - # Default build command. - command = "make dirhtml" - environment = { PYTHON_VERSION = "3.8" } - -# Production context: all deploys from the Production branch -# set in your site’s Branches settings in the UI will inherit -# these settings. -[context.production] - publish = "_build/dirhtml" - command = "make dirhtml" - -# Deploy Preview context: all deploys generated from -# a pull/merge request will inherit these settings. -[context.deploy-preview] - publish = "_build/dirhtml" - -# The following redirect is intended for use with most SPAs -# that handle routing internally. -[[redirects]] - from = "/*" - to = "/index.html" - status = 200