Skip to content
This repository has been archived by the owner on Jan 13, 2023. It is now read-only.

Commit

Permalink
Initial commit
Browse files Browse the repository at this point in the history
  • Loading branch information
maelle committed May 4, 2020
0 parents commit 82def0c
Show file tree
Hide file tree
Showing 12 changed files with 1,330 additions and 0 deletions.
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
.Rhistory
.RData
.Rproj.user
8 changes: 8 additions & 0 deletions config.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@

baseURL = "http://example.org/"
languageCode = "en-us"
title = "CRAN checks API"

[module]
[[module.imports]]
path = "github.com/bep/docuapi"
14 changes: 14 additions & 0 deletions content/main.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
---
weight: 10
title: API Reference
---

## Base URL

<https://cranchecks.info/>

## HTTP methods

This is a `read only` API. That is, we only allow `GET` (and `HEAD`) requests on this API.

Requests of all other types will be rejected with appropriate `405` code.
15 changes: 15 additions & 0 deletions cranchecksdocs.Rproj
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
Version: 1.0

RestoreWorkspace: Default
SaveWorkspace: Default
AlwaysSaveHistory: Default

EnableCodeIndexing: Yes
UseSpacesForTab: Yes
NumSpacesForTab: 2
Encoding: UTF-8

RnwWeave: Sweave
LaTeX: pdfLaTeX

BuildType: Website
5 changes: 5 additions & 0 deletions go.mod
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
module ugly-dummy

go 1.14

require github.com/bep/docuapi v1.4.1 // indirect
5 changes: 5 additions & 0 deletions go.sum
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
github.com/bep/docuapi v1.4.1 h1:Vkqhum+XP4PALfo4DKvGj9XwnyQVw10OFMTgY+2liOs=
github.com/bep/docuapi v1.4.1/go.mod h1:gL37LyJyv20zcMnZcau6BN8LJvb3jmzrq2rQDTD0Iyc=
github.com/jquery/jquery-dist v0.0.0-20190501211928-15bc73803f76/go.mod h1:/lTfttEqFU0GWTaOOMIeNTzLGQ7yTIgyzjtkS/pYIoc=
github.com/olivernn/lunr.js v2.3.8+incompatible/go.mod h1:yEkQ1DUSMtNsn8n2CqvQXZd0ErWPEG8g9QRmblR+KS8=
github.com/slatedocs/slate v2.3.1+incompatible/go.mod h1:n698aXLkExWIlF7prJey0Kq6wlKIKvj/stVb5oouZDM=
3 changes: 3 additions & 0 deletions index.Rmd
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
---
site: blogdown:::blogdown_site
---
1 change: 1 addition & 0 deletions netlify.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
GO_VERSION=1.12
Loading

0 comments on commit 82def0c

Please sign in to comment.