Skip to content

Commit

Permalink
bump to 0.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
patatoid committed Jan 18, 2024
1 parent cd8363e commit 9cf62de
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 7 deletions.
6 changes: 5 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,17 @@

> Note that 0.X.X releases are reverved for the beta version of the server and may include breaking changes.
## [unreleased]
## [0.3.0] 2024-01-18

### Added

- [identity] user organisation management
- [identity] TOTP second factor support
- [identity] user roles management
- [infra] split auth/admin/gateway/all docker images
- {infra] split gateway, admin, auth releases
- {infra] system wide installation script
- {infra] gather statistical info on installation

## [0.2.0] - 2023-05-17

Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -56,16 +56,16 @@ The applications will be available on different ports (depending on the filled o
A docker image is available at `malachit/boruta-server` on [DockerHub](https://hub.docker.com/r/malachit/boruta-server), you will need a postgres instance installed on your system with credentials provided as environment variables in `.env.*`.

1. Run database migrations
1. Get environment file

```bash
docker run --env-file .env.dev --network=host malachit/boruta-server:0.2.0 ./bin/boruta eval "Boruta.Release.setup()"
wget https://raw.githubusercontent.com/malach-it/boruta-server/master/.env.dev
```

Once done you will be able to launch the server.

```bash
docker run --env-file .env.dev --network=host malachit/boruta-server:0.2.0
docker run --env-file .env.dev --network=host malachit/boruta-server:0.3.0
```

The applications will be available on different ports (depending on the values provided in `.env.dev`):
Expand Down
2 changes: 1 addition & 1 deletion mix.exs
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ defmodule Boruta.Umbrella.MixProject do

def project do
[
version: "0.2.0",
version: "0.3.0",
apps_path: "apps",
start_permanent: Mix.env() == :prod,
deps: deps(),
Expand Down
4 changes: 2 additions & 2 deletions scripts/setup.debian.sh
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,10 @@ apt-get -q install -y libssl-dev wget vim postgresql postgresql-client

echo '## install boruta'
cd /opt
wget -q https://github.com/malach-it/boruta-server/releases/download/0.2.0/boruta.tar.gz
wget -q https://github.com/malach-it/boruta-server/releases/download/0.3.0/boruta.tar.gz
tar xf boruta.tar.gz

wget -q -O /opt/boruta/.env.production https://raw.githubusercontent.com/malach-it/boruta-server/0.2.0/.env.example
wget -q -O /opt/boruta/.env.production https://raw.githubusercontent.com/malach-it/boruta-server/0.3.0/.env.example
vim /opt/boruta/.env.production

cat > /etc/systemd/system/boruta.service <<- EOF
Expand Down

0 comments on commit 9cf62de

Please sign in to comment.