Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/evscott/hackapp
https://github.com/evscott/hackapp
Last synced: 22 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/evscott/hackapp
- Owner: evscott
- Created: 2020-01-27T19:36:42.000Z (almost 5 years ago)
- Default Branch: master
- Last Pushed: 2021-09-29T17:57:39.000Z (about 3 years ago)
- Last Synced: 2024-10-04T21:10:21.762Z (about 1 month 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 [email protected]: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)
```