-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #26 from CityOfLosAngeles/ghi-25
feat: update codebase to reflect the latest configuration in the parent open-sdg and open-sdg-site project
- Loading branch information
Showing
33 changed files
with
739 additions
and
604 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
// For format details, see https://aka.ms/devcontainer.json. For config options, see the | ||
// README at: https://github.com/devcontainers/templates/tree/main/src/ruby | ||
{ | ||
"name": "Ruby", | ||
// Or use a Dockerfile or Docker Compose file. More info: https://containers.dev/guide/dockerfile | ||
"image": "mcr.microsoft.com/devcontainers/ruby:1-3.2-bullseye", | ||
"features": { | ||
"ghcr.io/devcontainers/features/python:1": { | ||
"installTools": true, | ||
"version": "3.11" | ||
} | ||
}, | ||
|
||
// Features to add to the dev container. More info: https://containers.dev/features. | ||
// "features": {}, | ||
|
||
// Use 'forwardPorts' to make a list of ports inside the container available locally. | ||
// not used as we are using --network=host, see below | ||
// "forwardPorts": [ | ||
// // Jekyll Server | ||
// 4000, | ||
// // Live Reload Server | ||
// 35729 | ||
// ], | ||
|
||
// Use 'postCreateCommand' to run commands after the container is created. | ||
"postCreateCommand": "bundle install --path=vendor/bundle", | ||
|
||
// allow the container to talk to ports on the host | ||
"runArgs": [ "--network=host" ] | ||
|
||
// Configure tool-specific properties. | ||
// "customizations": {}, | ||
|
||
// Uncomment to connect as root instead. More info: https://aka.ms/dev-containers-non-root. | ||
// "remoteUser": "root" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,40 @@ | ||
--- | ||
name: Bug Report | ||
about: Report a Bug | ||
title: '' | ||
labels: bug | ||
assignees: '' | ||
|
||
--- | ||
|
||
<!--- | ||
Please read this! | ||
Before opening a new issue, make sure to search for keywords in the issues | ||
filtered by the "bug" and verify the issue you're about to submit isn't a duplicate. | ||
---> | ||
|
||
### Summary | ||
|
||
<!-- Summarize the bug encountered concisely. --> | ||
|
||
### Steps to reproduce | ||
|
||
<!-- Describe how one can reproduce the issue - this is very important. Please use an ordered list. --> | ||
|
||
### What is the current *bug* behavior? | ||
|
||
<!-- Describe what actually happens. --> | ||
|
||
### What is the expected *correct* behavior? | ||
|
||
<!-- Describe what you should see instead. --> | ||
|
||
### Relevant logs and/or screenshots | ||
|
||
<!-- Paste any relevant logs - please use code blocks (```) to format console output, logs, and code | ||
as it's tough to read otherwise. --> | ||
|
||
### Possible fixes | ||
|
||
<!-- If you can, link to the line of code that might be responsible for the problem. --> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
--- | ||
name: General Issue | ||
about: Suggest an idea for this project | ||
title: '' | ||
labels: '' | ||
assignees: '' | ||
|
||
--- | ||
|
||
<!--- | ||
Please read this! | ||
Before opening a new issue, make sure to search for relevant keywords in the issues | ||
and verify the issue you're about to submit isn't a duplicate. | ||
---> | ||
|
||
### Problem | ||
|
||
<!-- Describe the general issue --> | ||
|
||
### Background Info | ||
|
||
<!-- If you can, provide how may we resolve the particular problem? --> | ||
|
||
### Proposed Solution | ||
|
||
<!-- If you can, provide how may we resolve the particular problem? --> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
### What does this PR do? | ||
|
||
<!-- Provide information of what the changes in this PR do. This may include both code changes and | ||
application behavior --> | ||
|
||
### Background info | ||
|
||
<!-- Provide relevant information for this PR, such as why it was opened, reasons for the changes, what | ||
needs to noted moving forward, etc. --> | ||
|
||
### How can this be tested (manually and/or automated test)? | ||
|
||
<!-- Provide steps to manually test the changes if applicable --> | ||
#### Provide manual tests steps if applicable | ||
|
||
<!-- Provide steps to run our test tools to test the changes if applicable --> | ||
#### Provide steps for running automated tests if applicable | ||
|
||
### Which issue(s) is/are related to this PR? | ||
|
||
<!-- List the issues with #<issue-number> --> | ||
This PR is/are related to issue(s) | ||
|
||
<!-- List close #<issue-number> for the issues that can be closed by this PR --> | ||
close |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -7,7 +7,8 @@ _site/ | |
.spyproject/ | ||
*__pycache__/ | ||
*.Rproj | ||
Gemfile.lock | ||
deploy_key* | ||
deploy_key*.pub | ||
*.keybase | ||
vendor/ | ||
_test/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,9 @@ | ||
source "https://rubygems.org" | ||
|
||
gem "jekyll", "3.8.4" | ||
gem "html-proofer" | ||
gem "jekyll", "3.9.3" | ||
gem "html-proofer", "3.19.4" | ||
gem "jekyll-remote-theme" | ||
gem "jekyll-open-sdg-plugins", "~> 0.0.15" | ||
gem "deep_merge" | ||
gem "jekyll-open-sdg-plugins", "2.3.0" | ||
gem "kramdown-parser-gfm" | ||
gem "webrick" |
Oops, something went wrong.