mirror of
https://github.com/offen/website.git
synced 2024-11-22 17:10:29 +01:00
Merge pull request #8 from offen/dev-domain
Refer to real world .dev domain
This commit is contained in:
commit
b25f93610f
@ -55,7 +55,7 @@ further defined and clarified by project maintainers.
|
|||||||
## Enforcement
|
## Enforcement
|
||||||
|
|
||||||
Instances of abusive, harassing, or otherwise unacceptable behavior may be
|
Instances of abusive, harassing, or otherwise unacceptable behavior may be
|
||||||
reported by contacting the project team at frederik.ring@gmail.com. All
|
reported by contacting the project team at mail@offen.dev. All
|
||||||
complaints will be reviewed and investigated and will result in a response that
|
complaints will be reviewed and investigated and will result in a response that
|
||||||
is deemed necessary and appropriate to the circumstances. The project team is
|
is deemed necessary and appropriate to the circumstances. The project team is
|
||||||
obligated to maintain confidentiality with regard to the reporter of an incident.
|
obligated to maintain confidentiality with regard to the reporter of an incident.
|
||||||
|
12
README.md
12
README.md
@ -18,22 +18,22 @@ Project planning and issue tracking is done using [Pivotal Tracker](https://www.
|
|||||||
|
|
||||||
#### Local cookies and SSL
|
#### Local cookies and SSL
|
||||||
|
|
||||||
In local development __offen__ requires to be served both via SSL (in order to use window.crypto) as well as a `local.offen.org` host.
|
In local development __offen__ requires to be served both via SSL (in order to use window.crypto) as well as a `local.offen.dev` host.
|
||||||
|
|
||||||
This requires the following steps to be taken:
|
This requires the following steps to be taken:
|
||||||
|
|
||||||
1. Edit your `/etc/hosts` to include the following line:
|
1. Edit your `/etc/hosts` to include the following line:
|
||||||
```
|
```
|
||||||
127.0.0.1 local.offen.org
|
127.0.0.1 local.offen.dev
|
||||||
```
|
```
|
||||||
2. Install and setup [mkcert](https://github.com/FiloSottile/mkcert). Assuming you have Go installed, this looks like:
|
2. Install and setup [mkcert](https://github.com/FiloSottile/mkcert). Assuming you have Go installed, this looks like:
|
||||||
```
|
```
|
||||||
$ go get -u github.com/FiloSottile/mkcert
|
$ go get -u github.com/FiloSottile/mkcert
|
||||||
$ mkcert -install
|
$ mkcert -install
|
||||||
```
|
```
|
||||||
3. Navigate into the repository root and create a local certificate and key for the `local.offen.org` host:
|
3. Navigate into the repository root and create a local certificate and key for the `local.offen.dev` host:
|
||||||
```
|
```
|
||||||
$ mkcert local.offen.org
|
$ mkcert local.offen.dev
|
||||||
```
|
```
|
||||||
|
|
||||||
You can test setup by starting the application:
|
You can test setup by starting the application:
|
||||||
@ -42,7 +42,7 @@ You can test setup by starting the application:
|
|||||||
$ docker-compose up
|
$ docker-compose up
|
||||||
```
|
```
|
||||||
|
|
||||||
Now you should be able to access <https://local.offen.org:8080/status> in your browser without any security warnings.
|
Now you should be able to access <https://local.offen.dev:8080/status> in your browser without any security warnings.
|
||||||
|
|
||||||
#### `server`
|
#### `server`
|
||||||
|
|
||||||
@ -93,4 +93,4 @@ npm test
|
|||||||
|
|
||||||
### License
|
### License
|
||||||
|
|
||||||
MIT © offen
|
MIT © [offen](https://www.offen.dev)
|
||||||
|
@ -3,15 +3,15 @@ server:
|
|||||||
working_dir: /server
|
working_dir: /server
|
||||||
volumes:
|
volumes:
|
||||||
- ./server:/server
|
- ./server:/server
|
||||||
- ./local.offen.org.pem:/server/local.offen.org.pem
|
- ./local.offen.dev.pem:/server/local.offen.dev.pem
|
||||||
- ./local.offen.org-key.pem:/server/local.offen.org-key.pem
|
- ./local.offen.dev-key.pem:/server/local.offen.dev-key.pem
|
||||||
- $GOPATH/pkg/mod:/go/pkg/mod
|
- $GOPATH/pkg/mod:/go/pkg/mod
|
||||||
environment:
|
environment:
|
||||||
- GOPATH=/go
|
- GOPATH=/go
|
||||||
- POSTGRES_CONNECTION_STRING=postgres://postgres:develop@database:5432/postgres?sslmode=disable
|
- POSTGRES_CONNECTION_STRING=postgres://postgres:develop@database:5432/postgres?sslmode=disable
|
||||||
ports:
|
ports:
|
||||||
- 8080:8080
|
- 8080:8080
|
||||||
command: go run cmd/server/main.go -conn postgres://postgres:develop@database:5432/postgres?sslmode=disable -key local.offen.org-key.pem -cert local.offen.org.pem
|
command: go run cmd/server/main.go -conn postgres://postgres:develop@database:5432/postgres?sslmode=disable -key local.offen.dev-key.pem -cert local.offen.dev.pem
|
||||||
links:
|
links:
|
||||||
- database
|
- database
|
||||||
|
|
||||||
@ -25,8 +25,8 @@ vault:
|
|||||||
working_dir: /vault
|
working_dir: /vault
|
||||||
volumes:
|
volumes:
|
||||||
- ./vault:/vault
|
- ./vault:/vault
|
||||||
- ./local.offen.org.pem:/vault/local.offen.org.pem
|
- ./local.offen.dev.pem:/vault/local.offen.dev.pem
|
||||||
- ./local.offen.org-key.pem:/vault/local.offen.org-key.pem
|
- ./local.offen.dev-key.pem:/vault/local.offen.dev-key.pem
|
||||||
command: npm start -- --port 9977
|
command: npm start -- --port 9977
|
||||||
ports:
|
ports:
|
||||||
- 9977:9977
|
- 9977:9977
|
||||||
|
Loading…
Reference in New Issue
Block a user