Skip to content

Commit

Permalink
Merge pull request PelicanPlatform#1362 from haoming29/add-contribute
Browse files Browse the repository at this point in the history
  • Loading branch information
bbockelm authored Jun 3, 2024
2 parents 7f359b7 + 285374a commit 44992b6
Show file tree
Hide file tree
Showing 14 changed files with 393 additions and 1 deletion.
354 changes: 354 additions & 0 deletions CONTRIBUTE.md

Large diffs are not rendered by default.

15 changes: 15 additions & 0 deletions dev/dev_pelican.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
TLSSkipVerify: true # Turn off the TLS check for developmetn
Logging:
Level: "debug" # Debug level will log more verbose messages
Federation:
DiscoveryUrl: "https://osdf-itb.osg-htc.org" # The federation for testing
TopologyNamespaceURL: https://topology.opensciencegrid.org/osdf/namespaces
Origin:
Exports:
- StoragePrefix: /tmp/pelican # Export this directory on your machine to the federation
FederationPrefix: /<your-name>/test/origin1 # Replace <your-name> to your name! Otherwise the origin may fail to start
Capabilities: ["Reads", "PublicReads"]
Director:
MaxMindKeyFile: /workspaces/pelican-dev/MaxMindKey # The location of your MaxMind license key
Registry:
InstitutionsUrl: "https://topology.opensciencegrid.org/institution_ids"
23 changes: 23 additions & 0 deletions dev/devcontainer.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
// For format details, see https://aka.ms/devcontainer.json. For config options, see the
// README at: https://github.com/devcontainers/templates/tree/main/src/cpp
{
"name": "Pelican",
"image": "hub.opensciencegrid.org/pelican_platform/pelican-dev:latest-itb",

// Use 'forwardPorts' to make a list of ports inside the container available locally.
// "forwardPorts": [],

// Configure tool-specific properties.
"customizations": {
"settings": {
"go.gopath": "/root/go",
"go.goroot": "/usr/local/go",
"go.useLanguageServer": true
},
"extensions": ["golang.go"],
"postCreateCommand": "go get -v github.com/go-delve/delve/cmd/dlv"
},

// Uncomment to connect as root instead. More info: https://aka.ms/dev-containers-non-root.
"remoteUser": "root"
}
Binary file added docs/images/dev-container-bl-icon.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added docs/images/dev-container-copy-config.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added docs/images/dev-container-folder.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added docs/images/dev-container-loading.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added docs/images/dev-container-reopen.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added docs/images/dev-container-status.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added docs/images/dev-container.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added docs/images/docker-startup.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added docs/images/vscode-start-terminal.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added docs/images/vscode-ws-after-config.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -177,7 +177,7 @@ require (
go.opentelemetry.io/otel/trace v1.20.0 // indirect
go.uber.org/goleak v1.2.1 // indirect
golang.org/x/arch v0.3.0 // indirect
golang.org/x/exp v0.0.0-20231006140011-7918f672742d // indirect
golang.org/x/exp v0.0.0-20231006140011-7918f672742d
golang.org/x/sync v0.6.0
golang.org/x/text v0.14.0
golang.org/x/time v0.5.0
Expand Down

0 comments on commit 44992b6

Please sign in to comment.