24 lines
328 B
Markdown
24 lines
328 B
Markdown
|
# LearningPulse server
|
||
|
|
||
|
## CI/CD
|
||
|
|
||
|
To check up on builds head to [the hydra server](https://hydra.4o1x5.dev/project/learningpulse)
|
||
|
|
||
|
### Enter developer shell
|
||
|
|
||
|
```bash
|
||
|
nix develop
|
||
|
```
|
||
|
|
||
|
### Build services
|
||
|
|
||
|
```bash
|
||
|
nix build .#learningpulse-dummy
|
||
|
```
|
||
|
|
||
|
### Run service
|
||
|
|
||
|
```bash
|
||
|
nix develop && cd dummy && mvn run spring-boot:run
|
||
|
```
|