https://github.com/drift-labs/v2-teacher
Drift V2 API Documentation
https://github.com/drift-labs/v2-teacher
Last synced: 2 months ago
JSON representation
Drift V2 API Documentation
- Host: GitHub
- URL: https://github.com/drift-labs/v2-teacher
- Owner: drift-labs
- License: apache-2.0
- Created: 2023-04-20T16:02:07.000Z (about 2 years ago)
- Default Branch: main
- Last Pushed: 2025-03-06T08:43:42.000Z (3 months ago)
- Last Synced: 2025-03-06T09:40:04.522Z (3 months ago)
- Language: SCSS
- Homepage: https://drift-labs.github.io/v2-teacher/
- Size: 449 KB
- Stars: 4
- Watchers: 6
- Forks: 10
- Open Issues: 11
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
- Code of conduct: CODE_OF_CONDUCT.md
Awesome Lists containing this project
README
# Drift v2 API Docs
This repository contains the API docs for interacting with the Drift v2.
# Local Dev Setup
Native setup for MacOS (you may also want to refer to the [original Slate wiki](https://github.com/slatedocs/slate/wiki/Using-Slate-Natively) for the original instructions and for other OSes)
Make sure latest ruby version is installed:
```
brew update
brew install ruby
```
(mac users will need to make sure their [`PATH` is set properly](https://mac.install.guide/ruby/13.html) to not use the default system ruby)Update gem (no `sudo`, if it fails running it again seems to work...):
```
gem update --system
```Install bundler:
```
export GEM_HOME="$HOME/.gem"
gem install bundler
```Install Nokigiri dependencies:
```
brew install libxml2 libxslt
```If using m1 mac:
```
bundle config set force_ruby_platform true
```Build the docs
```
bundle install
``After doing the above, you can work on docs locally via:
```
bundle exec middleman server
```or
```
./start.sh
```