diff --git a/.github/workflows/push-docs.yml b/.github/workflows/push-docs.yml deleted file mode 100644 index 8ba570640..000000000 --- a/.github/workflows/push-docs.yml +++ /dev/null @@ -1,29 +0,0 @@ -name: Push docs - -on: - push: - paths: - - 'docs/**' - branches: - - master - -jobs: - mkdocs-build-and-push: - name: mkdocs and push to docs.donkeycar.com - runs-on: ubuntu-latest - defaults: - run: - shell: bash -l {0} - steps: - - uses: actions/checkout@v2 - - uses: conda-incubator/setup-miniconda@v2 - with: - python-version: 3.7 - auto-activate-base: true - channels: defaults, conda-forge - - run: | - conda info - conda list - conda install mkdocs - mkdocs gh-deploy --force -v - echo Docs were made and pushed to docs.donkeycar.com \ No newline at end of file diff --git a/mkdocs.yml b/mkdocs.yml deleted file mode 100644 index a4db62718..000000000 --- a/mkdocs.yml +++ /dev/null @@ -1,45 +0,0 @@ ---- -site_name: Donkey Car -theme: readthedocs - -repo_url: https://github.com/autorope/donkeycar/ -edit_uri: edit/master/docs -google_analytics: ['UA-99215530-2', 'github.io/donkey'] -extra_css: - - extra.css - -pages: - - Home: index.md - - User Guide: - - 'Build a car.': guide/build_hardware.md - - 'Install the software.': guide/install_software.md - - 'Create Donkeycar App.': guide/create_application.md - - 'Calibrate steering and throttle.': guide/calibrate.md - - 'Get driving.': guide/get_driving.md - - 'Train an autopilot.': guide/train_autopilot.md - - 'Dataset and pre-trained models': guide/dataset_pretrained_models.md - - 'Donkey Simulator.': guide/simulator.md - - 'Virtual Race League.': guide/virtual_race_league.md - - 'Mobile app': guide/mobile_app.md - - Parts: - - 'About': parts/about.md - - 'Actuators': parts/actuators.md - - 'Controllers': parts/controllers.md - - 'Keras': parts/keras.md - - 'Stores': parts/stores.md - - 'IMU': parts/imu.md - - 'OLED': parts/oled.md - - 'Voice Control': parts/voice_control.md - - 'Stop Sign Detection': parts/stop_sign_detection.md - - Utilities: - - 'donkey': utility/donkey.md - - Developer Guide: - - 'Create your own model': dev_guide/model.md - - - Supported Cars: supported_cars.md - - Roll Your Own: roll_your_own.md - - Contribute: contribute.md - - Tests: tests.md - - Releases: release.md - - FAQ: faq.md - - Legacy: legacy.md