Skip to content

Commit 6dc0abc

Browse files
committed
Updated README and docs
1 parent cbad380 commit 6dc0abc

File tree

7 files changed

+34
-24
lines changed

7 files changed

+34
-24
lines changed

README.md

Lines changed: 10 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,17 @@
22

33
A web application for publishing and collaborating around urban planning projects. This project is part of the [Cividi](https://cividi.ch) solution for holistic urban assessments, used as a tool for setting planning priorities.
44

5-
For more information, please visit https://gemeindescan.ch or read our [whitepaper](https://bitbucket.org/cividi/whitepaper).
5+
For more information, please visit [Gemeindescan.ch](https://gemeindescan.ch) and read our [Whitepaper](https://bitbucket.org/cividi/whitepaper).
66

7-
# Releases
7+
# Additional documentation
88

9-
*See [RELEASE.md](/RELEASE.md)*
9+
- [Release notes](./RELEASE.md)
10+
- [Architecture](./docs/architecture.md)
11+
- [Troubleshooting](./docs/troubleshooting.md)
12+
- [Test guide](./docs/testing.md)
13+
- [Django](./docs/django.md)
14+
- [GraphQL](./docs/graphql.md)
15+
- [Further links](./docs/links.md)
1016

1117
# Developer guide
1218

@@ -20,7 +26,7 @@ For more information, please visit https://gemeindescan.ch or read our [whitepap
2026
- Wagtail
2127
- Docker
2228

23-
For a tour of the app and a testing protocol see [`docs/testing.md`](/docs/testing.md).
29+
For a tour of the app and a testing protocol see [`docs/testing.md`](./docs/testing.md).
2430

2531
## setup project
2632

@@ -140,11 +146,3 @@ Type `make` in the vscode terminal, that creates the django dev server on your m
140146
## deploy
141147

142148
Type `make deploy_prod` in the project root. The file `env.hosts.prod` needs to have the right settings.
143-
144-
## additional docs
145-
146-
- [architecture](/docs/architecture.md)
147-
- [django](/docs/django.md)
148-
- [links](/docs/links.md)
149-
- [grahpql](/docs/graphql.md)
150-
- [troubleshooting](/docs/troubleshooting.md)

RELEASE.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,16 @@
22

33
## Releases
44

5+
### 0.6.1
6+
7+
### 0.6.0
8+
9+
### 0.5.1
10+
11+
### 0.5.0
12+
13+
### 0.4.0
14+
515
### 0.3.1
616
[Released: *2020-04-09*](https://bitbucket.org/cividi/gemeindescan-webui/commits/tag/0.3.1)
717
[Sprint: 4 "Out of the Box"](https://bitbucket.org/cividi/gemeindescan-webui/issues?milestone=SP+4%3A+Out+of+the+box)

docs/architecture.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
# architecture
1+
# Architecture
22

3-
## django
3+
_Notes on the architecture of the project._
44

55
We switch to graphne + django. Our main goal is to have a backend service that speaks graphql. FastAPI doesn’t brings much to the table in this regard.
66
The focus of FastAPI Is OpenAPI which is REST based. Also Swagger UI is build for REST. The graphql part is just reused from Starlette which itself uses graphene.

docs/django.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
1-
# django
1+
# Django
2+
3+
_Notes on our usage of the Django Framework._
24

35
## init project
46

docs/graphql.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,11 @@
1-
# graphql
1+
# GraphQL
22

3-
go to '/graphql/' which opens the GraphiQL browser
3+
_Notes on our usage of the GraphQL-based query API._
44

55
## sample queries
66

7+
go to '/graphql/' which opens the GraphiQL browser
8+
79
### gemeinden
810

911
```graphql
@@ -45,5 +47,3 @@ The `MunicipalityNode` has the fields
4547
}
4648
}
4749
```
48-
49-

docs/links.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# links
1+
# Further References
22

33
## django
44

docs/troubleshooting.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
1-
# troubleshooting
1+
# Troubleshooting
22

33
## init
44

55
If you want/need a clean state you can delete the var docker volume.
66
`docker volume rm var-gemeindescan-webui`
77

8-
## vscode
8+
## vscode
99

1010
If you have a vscode related problem it could help to delete the vscode docker volume.
11-
- django: `docker volume rm gemeindescan-webui_vscode-remote-django`
12-
- vue: `docker volume rm gemeindescan-webui_vscode-remote-vue`
11+
- django: `docker volume rm gemeindescan-webui_vscode-remote-django`
12+
- vue: `docker volume rm gemeindescan-webui_vscode-remote-vue`
1313

1414
## windows
1515

0 commit comments

Comments
 (0)