Skip to content

Commit

Permalink
Update build instructions in README
Browse files Browse the repository at this point in the history
  • Loading branch information
cbrnrd committed May 21, 2023
1 parent a130207 commit cc63766
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ Maliketh is a multi-user, customizable C2 framework. The goal of Maliketh is to
* Multi-user (operators)
* Easily configurable (via YAML files)
* Easily deployable (via Docker)
* Per-operator implant builder

## Implant features

Expand All @@ -30,15 +31,15 @@ The implant is written in C++ and targeted for Windows. The main feature of the

## Server deployment

To start the server, 90% of your work can be done by running the following command in the `server/` directory:
To start the server, 90% of your work can be done by running the following command in the project root:

```bash
docker-compose --env-file .env up -d
docker-compose -f server/docker-compose.yml --env-file server/.env.example up
```

Note: You will need to create a `.env` file in the `server/` directory. See `.env.example` for an example.

The only thing left to do is bootstrap the database and create the admin user. To do this, run the following command:
The only thing left to do is bootstrap the database and create the admin user. To do this, run the following command in the `server` directory:

```bash
./bootstrap_db.sh
Expand Down

0 comments on commit cc63766

Please sign in to comment.