-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
9730ac4
commit 8659386
Showing
12 changed files
with
195 additions
and
84 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,29 @@ | ||
name: Build template | ||
|
||
on: [push] | ||
|
||
jobs: | ||
build: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v4 | ||
|
||
- name: Build docker image | ||
run: docker compose build | ||
|
||
- name: Run docker container | ||
run: docker compose up -d | ||
|
||
- name: Test if service is reachable | ||
run: | | ||
sleep 30 | ||
curl -v -s --retry 10 --retry-connrefused http://localhost:8000/ | ||
- name: Report error to Sentry | ||
if: failure() | ||
run: | | ||
curl -sL https://sentry.io/get-cli/ | bash | ||
export SENTRY_DSN=${{ secrets.SENTRY_DSN }} | ||
MESSAGE_HEAD='Template: "${{ github.workflow }}" failed in ${{ github.repository }}.' | ||
MESSAGE_BODY='Check <https://github.com/${{ github.repository }}/actions/runs/${{ github.run_id }}> for more details.' | ||
sentry-cli send-event -m "$MESSAGE_HEAD" -m "$MESSAGE_BODY" --log-level=error |
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: Deploy template | ||
|
||
on: | ||
push: | ||
schedule: | ||
- cron: "50 16 * * *" | ||
|
||
jobs: | ||
build: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v4 | ||
|
||
- name: Set up Python | ||
uses: actions/setup-python@v5 | ||
with: | ||
python-version: "3.12" | ||
|
||
- name: Install dependencies | ||
run: | | ||
python -m pip install --upgrade pip | ||
pip install divio-cli | ||
- name: Deploy to Divio | ||
run: | | ||
divio login ${{ secrets.DIVIO_TOKEN }} | ||
divio app deploy test --remote-id ${{ secrets.DIVIO_WEBSITE_ID }} --build-mode FORCE | ||
- name: Test if website is reachable | ||
run: | | ||
curl -v -s --retry 10 --retry-connrefused ${{ secrets.WEBSITE_URL }} | ||
- name: Report error to Sentry | ||
if: failure() | ||
run: | | ||
curl -sL https://sentry.io/get-cli/ | bash | ||
export SENTRY_DSN=${{ secrets.SENTRY_DSN }} | ||
MESSAGE_HEAD='Template: "${{ github.workflow }}" failed in ${{ github.repository }}.' | ||
MESSAGE_BODY='Check <https://github.com/${{ github.repository }}/actions/runs/${{ github.run_id }}> for more details.' | ||
sentry-cli send-event -m "$MESSAGE_HEAD" -m "$MESSAGE_BODY" --log-level=error |
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,19 @@ | ||
# Code of Conduct | ||
|
||
## Welcome to Our Open-Source Community | ||
|
||
This collaborative project strives to create an inclusive and welcoming environment. We value all contributors' and participants' interactions that reflect courtesy, respect, and kindness. | ||
|
||
We have a zero-tolerance policy for any form of abuse or harassment. | ||
|
||
If you have concerns about behaviour, please reach out to Divio at [email protected]. | ||
|
||
Reports will be treated confidentially and taken seriously. The project maintainers may take appropriate action, including exclusion from participation in this and other projects, if necessary. | ||
|
||
## Guidelines for Code Review | ||
|
||
Code review is a crucial but sometimes challenging process for contributors and reviewers. It involves constructive critique, and improvements are often needed before accepting contributions. | ||
|
||
We expect contributors to recognize that all aspects of their submissions, including code and underlying ideas, will be carefully reviewed. | ||
|
||
Reviewers are encouraged to provide feedback sensitively and respectfully, aligning with our shared goal for the project's success. |
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,26 @@ | ||
# Contributing to the Project | ||
|
||
Thank you for contributing! We appreciate your involvement in making this project better. Before you start, please familiarize yourself with our [Code of Conduct](./CODE_OF_CONDUCT.md). | ||
|
||
## Submitting Proposals | ||
|
||
Proposals can be submitted through: | ||
|
||
- [Pull Requests](https://github.com/divio/getting-started-with-go/pulls) | ||
- [Issues](https://github.com/divio/getting-started-with-go/issues) | ||
|
||
## Pull Requests and Branches | ||
|
||
When making pull requests, adhere to the following: | ||
|
||
- Submit from a properly named new branch. | ||
- Target the `main` branch. | ||
|
||
Learn more: | ||
|
||
- [How to make pull requests](https://help.github.com/articles/using-pull-requests/) | ||
- [Managing branches](https://help.github.com/articles/creating-and-deleting-branches-within-your-repository/) | ||
|
||
### Whitespace | ||
|
||
Avoid trailing whitespace (spaces or tabs at the end of a line). They might be invisible and lead to silent issues or unexpected changes. Some editors may silently delete them by default. |
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,14 @@ | ||
FROM golang:1.22.2 | ||
|
||
WORKDIR /app | ||
|
||
COPY go.mod go.sum /app/ | ||
RUN go mod download | ||
|
||
COPY . /app | ||
|
||
RUN CGO_ENABLED=0 GOOS=linux go build main.go | ||
|
||
EXPOSE 80 | ||
|
||
CMD ["./main"] |
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,24 @@ | ||
Copyright (c) 2024, Divio AG | ||
All rights reserved. | ||
|
||
Redistribution and use in source and binary forms, with or without | ||
modification, are permitted provided that the following conditions are met: | ||
* Redistributions of source code must retain the above copyright | ||
notice, this list of conditions and the following disclaimer. | ||
* Redistributions in binary form must reproduce the above copyright | ||
notice, this list of conditions and the following disclaimer in the | ||
documentation and/or other materials provided with the distribution. | ||
* Neither the name of Divio AG nor the | ||
names of its contributors may be used to endorse or promote products | ||
derived from this software without specific prior written permission. | ||
|
||
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND | ||
ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED | ||
WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE | ||
DISCLAIMED. IN NO EVENT SHALL DIVIO AG BE LIABLE FOR ANY DIRECT, INDIRECT, | ||
INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT | ||
LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR | ||
PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF | ||
LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE | ||
OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF | ||
ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
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,93 +1,23 @@ | ||
# getting-started-with-go | ||
# Getting Started with Go | ||
|
||
[![Deploy to Divio](https://img.shields.io/badge/DEPLOY-TO%20DIVIO-DFFF67?logo=docker&logoColor=white&labelColor=333333)](https://control.divio.com/app/new/?template_url=https://github.com/divio/getting-started-with-go/archive/refs/heads/main.zip) | ||
|
||
Welcome to our QuickStart template – your portal to swift application development and seamless local testing. Whether you're delving into Go for the first time or optimizing your workflow, our template, based on Go's [Writing Web Applications Guide](https://go.dev/doc/articles/wiki/), has got you covered. | ||
|
||
## Getting started | ||
## Cloud Setup | ||
|
||
To make it easy for you to get started with GitLab, here's a list of recommended next steps. | ||
Create a [Divio Account](https://control.divio.com/) and choose **Go** from the template selection when creating a new application. Alternatively, click the `Deploy to Divio` button above and follow the app creation wizard. Finally, deploy your app to the `test` or `live` environment. | ||
|
||
Already a pro? Just edit this README.md and make it your own. Want to make it easy? [Use the template at the bottom](#editing-this-readme)! | ||
For in-depth details about Divio Cloud, refer to the [Divio documentation](https://docs.divio.com/introduction/). | ||
|
||
## Add your files | ||
## Local Setup | ||
|
||
- [ ] [Create](https://docs.gitlab.com/ee/user/project/repository/web_editor.html#create-a-file) or [upload](https://docs.gitlab.com/ee/user/project/repository/web_editor.html#upload-a-file) files | ||
- [ ] [Add files using the command line](https://docs.gitlab.com/ee/gitlab-basics/add-file.html#add-a-file-using-the-command-line) or push an existing Git repository with the following command: | ||
Install the [Divio CLI](https://github.com/divio/divio-cli) to set up your app locally. | ||
|
||
``` | ||
cd existing_repo | ||
git remote add origin https://gitlab.com/divio/templates/getting-started-with-go.git | ||
git branch -M main | ||
git push -uf origin main | ||
``` | ||
Alternatively, build this app locally using Docker: | ||
|
||
## Integrate with your tools | ||
|
||
- [ ] [Set up project integrations](https://gitlab.com/divio/templates/getting-started-with-go/-/settings/integrations) | ||
|
||
## Collaborate with your team | ||
|
||
- [ ] [Invite team members and collaborators](https://docs.gitlab.com/ee/user/project/members/) | ||
- [ ] [Create a new merge request](https://docs.gitlab.com/ee/user/project/merge_requests/creating_merge_requests.html) | ||
- [ ] [Automatically close issues from merge requests](https://docs.gitlab.com/ee/user/project/issues/managing_issues.html#closing-issues-automatically) | ||
- [ ] [Enable merge request approvals](https://docs.gitlab.com/ee/user/project/merge_requests/approvals/) | ||
- [ ] [Set auto-merge](https://docs.gitlab.com/ee/user/project/merge_requests/merge_when_pipeline_succeeds.html) | ||
|
||
## Test and Deploy | ||
|
||
Use the built-in continuous integration in GitLab. | ||
|
||
- [ ] [Get started with GitLab CI/CD](https://docs.gitlab.com/ee/ci/quick_start/index.html) | ||
- [ ] [Analyze your code for known vulnerabilities with Static Application Security Testing (SAST)](https://docs.gitlab.com/ee/user/application_security/sast/) | ||
- [ ] [Deploy to Kubernetes, Amazon EC2, or Amazon ECS using Auto Deploy](https://docs.gitlab.com/ee/topics/autodevops/requirements.html) | ||
- [ ] [Use pull-based deployments for improved Kubernetes management](https://docs.gitlab.com/ee/user/clusters/agent/) | ||
- [ ] [Set up protected environments](https://docs.gitlab.com/ee/ci/environments/protected_environments.html) | ||
|
||
*** | ||
|
||
# Editing this README | ||
|
||
When you're ready to make this README your own, just edit this file and use the handy template below (or feel free to structure it however you want - this is just a starting point!). Thanks to [makeareadme.com](https://www.makeareadme.com/) for this template. | ||
|
||
## Suggestions for a good README | ||
|
||
Every project is different, so consider which of these sections apply to yours. The sections used in the template are suggestions for most open source projects. Also keep in mind that while a README can be too long and detailed, too long is better than too short. If you think your README is too long, consider utilizing another form of documentation rather than cutting out information. | ||
|
||
## Name | ||
Choose a self-explaining name for your project. | ||
|
||
## Description | ||
Let people know what your project can do specifically. Provide context and add a link to any reference visitors might be unfamiliar with. A list of Features or a Background subsection can also be added here. If there are alternatives to your project, this is a good place to list differentiating factors. | ||
|
||
## Badges | ||
On some READMEs, you may see small images that convey metadata, such as whether or not all the tests are passing for the project. You can use Shields to add some to your README. Many services also have instructions for adding a badge. | ||
|
||
## Visuals | ||
Depending on what you are making, it can be a good idea to include screenshots or even a video (you'll frequently see GIFs rather than actual videos). Tools like ttygif can help, but check out Asciinema for a more sophisticated method. | ||
|
||
## Installation | ||
Within a particular ecosystem, there may be a common way of installing things, such as using Yarn, NuGet, or Homebrew. However, consider the possibility that whoever is reading your README is a novice and would like more guidance. Listing specific steps helps remove ambiguity and gets people to using your project as quickly as possible. If it only runs in a specific context like a particular programming language version or operating system or has dependencies that have to be installed manually, also add a Requirements subsection. | ||
|
||
## Usage | ||
Use examples liberally, and show the expected output if you can. It's helpful to have inline the smallest example of usage that you can demonstrate, while providing links to more sophisticated examples if they are too long to reasonably include in the README. | ||
|
||
## Support | ||
Tell people where they can go to for help. It can be any combination of an issue tracker, a chat room, an email address, etc. | ||
|
||
## Roadmap | ||
If you have ideas for releases in the future, it is a good idea to list them in the README. | ||
|
||
## Contributing | ||
State if you are open to contributions and what your requirements are for accepting them. | ||
|
||
For people who want to make changes to your project, it's helpful to have some documentation on how to get started. Perhaps there is a script that they should run or some environment variables that they need to set. Make these steps explicit. These instructions could also be useful to your future self. | ||
|
||
You can also document commands to lint the code or run tests. These steps help to ensure high code quality and reduce the likelihood that the changes inadvertently break something. Having instructions for running tests is especially helpful if it requires external setup, such as starting a Selenium server for testing in a browser. | ||
|
||
## Authors and acknowledgment | ||
Show your appreciation to those who have contributed to the project. | ||
|
||
## License | ||
For open source projects, say how it is licensed. | ||
|
||
## Project status | ||
If you have run out of energy or time for your project, put a note at the top of the README saying that development has slowed down or stopped completely. Someone may choose to fork your project or volunteer to step in as a maintainer or owner, allowing your project to keep going. You can also make an explicit request for maintainers. | ||
1. Ensure [Docker](https://docs.docker.com/get-docker/) is installed and running. | ||
2. Clone this repository locally. | ||
3. Build the app with `docker compose build`. | ||
4. Run the app using `docker compose up`. | ||
5. Open [http://localhost:8000]() to view your app. |
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,10 @@ | ||
version: "3" | ||
|
||
services: | ||
web: | ||
build: . | ||
ports: | ||
- "8000:80" | ||
volumes: | ||
- ".:/app:rw" | ||
- "./data:/data:rw" |
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,3 @@ | ||
module getting-started-with-go | ||
|
||
go 1.22.2 |
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,16 @@ | ||
package main | ||
|
||
import ( | ||
"fmt" | ||
"log" | ||
"net/http" | ||
) | ||
|
||
func handler(w http.ResponseWriter, r *http.Request) { | ||
fmt.Fprintf(w, "Hi there, I love %s!", r.URL.Path[1:]) | ||
} | ||
|
||
func main() { | ||
http.HandleFunc("/", handler) | ||
log.Fatal(http.ListenAndServe(":80", nil)) | ||
} |