Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/datasektionen/calypso
Like Prometheus, but with better shape
https://github.com/datasektionen/calypso
Last synced: about 2 months ago
JSON representation
Like Prometheus, but with better shape
- Host: GitHub
- URL: https://github.com/datasektionen/calypso
- Owner: datasektionen
- Created: 2017-09-21T21:53:40.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2024-11-21T18:16:11.000Z (about 2 months ago)
- Last Synced: 2024-11-21T19:22:56.034Z (about 2 months ago)
- Language: Java
- Homepage: https://calypso.datasektionen.se
- Size: 234 KB
- Stars: 0
- Watchers: 14
- Forks: 0
- Open Issues: 13
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
Calypso
=======**News and event management system for Datasektionen.se**
Spring Boot with Spring MVC + Spring Data JPA + Spring Security + Thymeleaf + PostgreSQL.
## Development
1. Configure environment variables
2. `mvn -DskipTests clean dependency:list install`
3. `java -jar target/calypso-1.0-SNAPSHOT.jar`-----------
Run with `-Dspring.profiles.active=dev` to use `application-dev.properties`
for development configuration. All config in this file will override the global
`application.properties`## Environment variables
All necessary environment variables are set automatically when running with docker compose.
| Name | Description | Default | Example |
| ---------------------------- | ------------------------------------ | --------------------------------- | ---------------------------------------- |
| LOGIN_KEY | Login key | --- | --- |
| LOGIN_FRONTEND_URL | URL from browser to login | https://login.datasektionen.se | http://localhost:7002/ |
| LOGIN_API_URL | URL from backend to login | https://login.datasektionen.se | http://login:7002/ |
| APPLICATION_URL | URL where calypso is hosted | --- | http://localhost.datasektionen.se:8080 |
| JDBC_DATABASE_URL | URL to database | --- | jdbc:postgresql://localhost:5432/calypso |
| JDBC_DATABASE_USERNAME | Database username | --- | user |
| JDBC_DATABASE_PASSWORD | Database password | --- | password |
| DARKMODE_URL | URL to darkmode or `true` or `false` | https://darkmode.datasektionen.se | http://localhost:2000 |