Skip to content

BlazeIsClone/spaceops-mission-ctrl

Repository files navigation

Mission CTRL Service

Go

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:

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:

docker-compose exec app {CMD}

Database Migrations

Run all of your outstanding migrations:

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:

make migrate action=down