Skip to content

safeav/safeav.github.io

Repository files navigation

SafeDrive: Data-Driven Simulations and Multi-Agent Interactions for Autonomous Vehicle Safety

Workshop website template

Build

  1. Install Hugo
  2. Clone the repo
git clone https://github.com/safeav/safeav.github.io.git
cd safeav.github.io
  1. Run hugo in the pwd. This will build the website locally
  2. To watch on localhost, run hugo server --watch. This is will give a localhost link.

Adding Data

  1. index.html in layout/ is to be edited/changed.
  2. index.html in static/categories is to be edited/changed. Replace the ml4ad with our website.
  3. Adding the images content in static/img.
  4. index.html in static/tags is to be edited/changed. Replace the ml4ad with our website.

Deploying

Note: Verify locally first and then push to github

  1. Run hugo in pwd, after editing the files. This will generate the public folder, which is then used for the deployment.
  2. Steps to push local data to the remote
git checkout main
git add .
git commit -m " updated"
git push origin main
  1. We are using gh-pages for the deployment.
git checkout  gh-pages
git fetch origin gh-pages
git rm -rf .
git checkout main -- 'public/*'
mv -f public/* .
rm -r public
git add .
git commit -m "updated"
git push origin gh-pages
  1. The website will be live with the changes at [https://safeav.github.io/]

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published