https://github.com/kmaork/microcorrection
A standalone, offline version of microcorruption, based on https://microcorruption.com/.
https://github.com/kmaork/microcorrection
Last synced: 3 months ago
JSON representation
A standalone, offline version of microcorruption, based on https://microcorruption.com/.
- Host: GitHub
- URL: https://github.com/kmaork/microcorrection
- Owner: kmaork
- Created: 2022-03-09T23:27:32.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2023-12-06T18:47:39.000Z (over 1 year ago)
- Last Synced: 2025-01-26T05:25:01.143Z (5 months ago)
- Language: HTML
- Homepage:
- Size: 445 KB
- Stars: 2
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Microcorrection
A standalone, offline version of microcorruption, based on https://microcorruption.com/.
## Use
```bash
docker-compose build prod
docker-compose up prod
```
Or with a specific port:
```bash
PORT=1234 docker-compose up prod
```## Develop
### Clone
```bash
git clone --recursive
```### Run tests
```bash
docker-compose run --rm test
```
Or with extra args:
```bash
docker-compose run --rm test tox -e py37 -- -svx
```### Run development server
```bash
docker-compose build dev
docker-compose up dev
```
Or with a specific port:
```bash
PORT=1234 docker-compose up dev
```