https://github.com/yagoluiz/juridical-console
Web scraping from the Projudi system for the Justice Tribunal of Brazil using Clojure
https://github.com/yagoluiz/juridical-console
Last synced: 4 months ago
JSON representation
Web scraping from the Projudi system for the Justice Tribunal of Brazil using Clojure
- Host: GitHub
- URL: https://github.com/yagoluiz/juridical-console
- Owner: yagoluiz
- Created: 2025-06-01T17:59:19.000Z (5 months ago)
- Default Branch: main
- Last Pushed: 2025-06-14T02:07:59.000Z (4 months ago)
- Last Synced: 2025-06-14T03:19:18.961Z (4 months ago)
- Language: Clojure
- Size: 25.4 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Juridical Console
Worker console responsible for web scraping and identifying legal processes from the Projudi system for the Justice
Tribunal of Brazil.## Project Overview
This project is based on [juridical-worker](https://github.com/yagoluiz/juridical-worker) implemented in Clojure.
## Running the Project
### Using Leiningen
#### Configuration
When running the project with Leiningen update your credentials directly in the
`resources/config.edn` file:```clojure
:legal-process-user "your-username"
:legal-process-password "your-password"
```#### Run the selenium image
```sh
make run-selenium
```#### Run the application
```sh
make lein-run
```Or using the REPL
```sh
make lein-repl
```### Using Docker
#### Configuration
When running the project with Docker, create a new `.env` file and update your credentials:
```sh
LEGAL_PROCESS_USER=your-username
LEGAL_PROCESS_PASSWORD=your-password
```#### Run docker-compose
```sh
make run-compose
```#### Down docker-compose
```sh
make down-compose
```#### Logs docker-compose
```sh
make logs-selenium
``````sh
make logs-juridical-console
```