diff --git a/.devcontainer/devcontainer.json b/.devcontainer/devcontainer.json index 1cf96f55..91f2e3f2 100644 --- a/.devcontainer/devcontainer.json +++ b/.devcontainer/devcontainer.json @@ -10,7 +10,7 @@ "jdkDistro": "oracle" } }, - "postCreateCommand": "chmod +x gradlew && cp revoltbuild.properties.example revoltbuild.properties && cp sentry.properties.example sentry.properties && git submodule update --init --recursive", + "postCreateCommand": "chmod +x gradlew && cp revoltbuild.properties.example revoltbuild.properties && cp sentry.properties.example sentry.properties && cp app/google-services.json.example app/google-services.json && git submodule update --init --recursive", "customizations": { "vscode": { "extensions": [ diff --git a/compliance/licenses/bsd.json b/compliance/licenses/bsd.json deleted file mode 100644 index 1b718874..00000000 --- a/compliance/licenses/bsd.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "content": "Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:\n\n1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.\n\n2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution.\n\nTHIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS IS\" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.", - "hash": "BSD", - "url": "https://chromium.googlesource.com/libyuv/libyuv/+/refs/heads/main/README.chromium", - "name": "BSD License" -} diff --git a/compliance/licenses/mlkit.json b/compliance/licenses/mlkit.json deleted file mode 100644 index eb4495df..00000000 --- a/compliance/licenses/mlkit.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "content": "These terms govern your use of ML Kit and the features you access. By using ML Kit, you agree to these terms.\n\nML Kit enables you to build machine learning features into your mobile apps. ML Kit provides easy-to-use SDKs that bring Google's machine learning expertise to your apps in a powerful yet easy-to-use package.\n\nYour use of ML Kit is subject to the Google APIs Terms of Service and Google's Privacy Policy. You may not use ML Kit if you are a person barred from receiving the software under the laws of the United States or other countries, including the country in which you are resident or from which you use the software.\n\nML Kit APIs are provided under the terms described here. Additional terms may apply to certain ML Kit APIs as described in the documentation for those APIs.", - "hash": "MLKIT", - "url": "https://developers.google.com/ml-kit/terms", - "name": "ML Kit Terms of Service" -} diff --git a/docs/src/content/docs/contributing/setup.mdx b/docs/src/content/docs/contributing/setup.mdx index 2303c5ed..88569a16 100644 --- a/docs/src/content/docs/contributing/setup.mdx +++ b/docs/src/content/docs/contributing/setup.mdx @@ -10,6 +10,8 @@ If you want to compile the app for yourself, you can also follow these guideline :::danger It may be tempting to skip some of these steps, but make sure you follow them to ensure that your development environment is set up correctly. + +Note: If you are doing this in Github Codespaces, steps 1-10 will be done for you. ::: import { Tabs, TabItem, Steps } from "@astrojs/starlight/components"