Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/blazeisclone/spaceops-mission-ctrl
SpaceOps Mission Control Service.
https://github.com/blazeisclone/spaceops-mission-ctrl
Last synced: about 1 month ago
JSON representation
SpaceOps Mission Control Service.
- Host: GitHub
- URL: https://github.com/blazeisclone/spaceops-mission-ctrl
- Owner: BlazeIsClone
- Created: 2024-09-09T00:49:13.000Z (5 months ago)
- Default Branch: main
- Last Pushed: 2024-10-24T13:46:39.000Z (3 months ago)
- Last Synced: 2024-11-02T00:24:49.824Z (3 months ago)
- Language: Go
- Size: 4.65 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Mission CTRL Service
[![Go](https://img.shields.io/badge/go-00ADD8.svg?style=for-the-badge&logo=go&logoColor=white)](https://go.dev/)
Mission Control microservice.
## Development
To get started, clone this repository and follow these steps to run the Go application in your local environment.
Start all of the Docker containers in the background, you may start in "detached" mode:
```bash
docker-compose up -d
```The application is executing within a Docker container and is isolated from your local computer. To run various commands against your application use:
```bash
docker-compose exec app {CMD}
```## Database Migrations
Run all of your outstanding migrations:
```bash
make migrate action=up
```Roll back the latest migration operation, you may use the rollback Artisan command. This command rolls back the last "batch" of migrations, which may include multiple migration files:
```bash
make migrate action=down
```