Skip to content

Commit

Permalink
Merge branch 'release/0.1.0'
Browse files Browse the repository at this point in the history
  • Loading branch information
WengerK committed Sep 8, 2022
2 parents 18e8baa + 1b1ab7c commit 779e4a9
Show file tree
Hide file tree
Showing 36 changed files with 1,390 additions and 128 deletions.
3 changes: 3 additions & 0 deletions .chanrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
{
"release-prefix": ""
}
17 changes: 17 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
# Changelog
All notable changes to this project will be documented in this file.

The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [Unreleased]

## [0.1.0] - 2022-09-08
### Changed
- update the hosts strategy to be compliante with new Docker container naming architecture

### Added
- update changelog following 'keep a changelog'

[Unreleased]: https://github.com/Games-of-Switzerland/gos-website/compare/0.1.0...HEAD
[0.1.0]: https://github.com/Games-of-Switzerland/gos-website/releases/tag/0.1.0
339 changes: 339 additions & 0 deletions LICENSE

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -111,5 +111,5 @@ bundle exec cap staging deploy

Contributions, issues and feature requests are welcome!

Feel free to check [issues page](https://github.com/Games-of-Switzerland/gos-website/issues).
Feel free to check [issues page](https://github.com/Games-of-Switzerland/swissgamesgarden/issues).

1 change: 1 addition & 0 deletions VERSION
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
0.1.0
6 changes: 6 additions & 0 deletions docker/setup_hosts.sh
Original file line number Diff line number Diff line change
Expand Up @@ -15,10 +15,16 @@ while [ $# -gt 0 ]; do
shift
done

# The following "hack" prevent the docker container to go "outside" when reaching the Drupal APIs.
# Ineed, on the Bolo Server the host machine can't reach the internet.
host gos_staging_app_1 | awk '/has address/ { print $4 " staging-api-gos.museebolo.ch" }' >> /etc/hosts
host gos_staging-app-1 | awk '/has address/ { print $4 " staging-api-gos.museebolo.ch" }' >> /etc/hosts
host gos_production_app_1 | awk '/has address/ { print $4 " api-gos.museebolo.ch" }' >> /etc/hosts
host gos_production-app-1 | awk '/has address/ { print $4 " api-gos.museebolo.ch" }' >> /etc/hosts
host gos_staging_app_1 | awk '/has address/ { print $4 " staging-api.swissgames.garden" }' >> /etc/hosts
host gos_staging-app-1 | awk '/has address/ { print $4 " staging-api.swissgames.garden" }' >> /etc/hosts
host gos_production_app_1 | awk '/has address/ { print $4 " api.swissgames.garden" }' >> /etc/hosts
host gos_production-app-1 | awk '/has address/ { print $4 " api.swissgames.garden" }' >> /etc/hosts

cat /etc/hosts

Expand Down
Binary file added public/android-chrome-192x192.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 public/android-chrome-512x512.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 public/apple-touch-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 public/favicon-16x16.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 public/favicon-32x32.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 modified public/favicon.ico
Binary file not shown.
Binary file added public/mstile-150x150.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading

0 comments on commit 779e4a9

Please sign in to comment.