Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/city-of-helsinki/events-helsinki-cms
CMS for events-helsinki
https://github.com/city-of-helsinki/events-helsinki-cms
django wagtail
Last synced: about 2 months ago
JSON representation
CMS for events-helsinki
- Host: GitHub
- URL: https://github.com/city-of-helsinki/events-helsinki-cms
- Owner: City-of-Helsinki
- License: mit
- Created: 2020-01-24T13:17:14.000Z (almost 5 years ago)
- Default Branch: master
- Last Pushed: 2023-05-08T10:28:53.000Z (over 1 year ago)
- Last Synced: 2024-04-08T16:41:31.172Z (9 months ago)
- Topics: django, wagtail
- Language: Python
- Homepage:
- Size: 7.46 MB
- Stars: 2
- Watchers: 21
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Contributing: .github/CONTRIBUTING.md
- License: LICENSE
Awesome Lists containing this project
README
### Tapahtumat.Helsinki CMS
[![Pipeline status](https://gitlab.com/City-of-Helsinki/KuVa/github-mirrors/events-helsinki-cms/badges/master/pipeline.svg)](https://gitlab.com/City-of-Helsinki/KuVa/github-mirrors/events-helsinki-cms/-/pipelines)Tapahtumat.Helsinki is a website in which Helsinki residents can find all that's happening.
Technical instructions in this README.md are written with an experienced Python developer in mind.
For example, "docker-compose up" means you already know what docker and docker-compose are and you have both installed locally and you don't need help with that.### Setup development environment
* Clone the repository* Start the app
```
docker-compose up
```* Access development server on [localhost:8000](http://localhost:8000)
* Login to admin interface with `admin` and 🥥
* Optionally, you can run [Tapahtumat.Helsinki frontend](https://github.com/City-of-Helsinki/events-helsinki-ui) locally as well
* Done! 🔥
### Installing packages
* Use `pip-compile` to manage packages
* After compiling a new package, re-build the Docker image so that the container would have access to it```
docker-compose up --build
```### Links to public information
* We develop Tapahtumat.Helsinki based on our [backlog in Jira](https://helsinkisolutionoffice.atlassian.net/jira/software/c/projects/TH/issues/?filter=allissues)
* CMS staging environment is deployed at: [cms.test.kuva.hel.ninja](https://cms.test.kuva.hel.ninja)
* CMS production environment is deployed at: [cms.prod.kuva.hel.ninja](https://cms.prod.kuva.hel.ninja)
* CMS production environment API docs showing public endpoints can be found at: [cms.prod.kuva.hel.ninja/docs/](https://cms.prod.kuva.hel.ninja/docs/)
* You can contribute to this repo by reading our [CONTRIBUTING.md](https://github.com/City-of-Helsinki/events-helsinki-cms/blob/master/.github/CONTRIBUTING.md)