https://github.com/evscott/hackapp
https://github.com/evscott/hackapp
Last synced: 7 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/evscott/hackapp
- Owner: evscott
- Created: 2020-01-27T19:36:42.000Z (almost 6 years ago)
- Default Branch: master
- Last Pushed: 2021-09-29T17:57:39.000Z (about 4 years ago)
- Last Synced: 2025-02-05T18:25:30.282Z (9 months ago)
- Language: JavaScript
- Size: 36.1 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Hackapp
## About
**Hackapp** consolidates [hackapp-client](https://github.com/evscott/hackapp-client) and [hackapp-api](https://github.com/evscott/hackapp-api) into submodule dependencies of a single repository to facilitate development using Docker-compose.
## Getting started
### Cloning the project
```
git clone --recursive git@github.com:evscott/hackapp.git
```
### Pulling submodule dependencies
```
git pull --recurse-submodules
```
## How to use
### Running Hackapp
```
docker-compose up --build
```
### Shutting down Hackapp
```
docker-compose down
```
## Cleanup
### Pruning docker volumes
```
docker volume prune
```
### Removing docker containers
```
docker rm $(docker ps -a -q)
```