Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

add Ubuntu 22.04 install procedure #494

Merged
merged 8 commits into from
Dec 1, 2023
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 11 additions & 3 deletions INSTALL/INSTALL.ubuntu2204.md
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,14 @@ sudo a2enmod headers

### Apache Virtual Host

Modify default Apache virtual host:

```bash
sudo vi /etc/apache2/sites-enabled/000-default.conf
```

With this configuration:

```conf
<VirtualHost _default_:80>
ServerAdmin [email protected]
Expand Down Expand Up @@ -189,15 +197,15 @@ And configure the database connection:
# 3. Migrating MONARC DB

```bash
$ php ./vendor/robmorgan/phinx/bin/phinx migrate -c module/Monarc/FrontOffice/migrations/phinx.php
$ php ./vendor/robmorgan/phinx/bin/phinx migrate -c module/Monarc/Core/migrations/phinx.php
sudo php ./vendor/robmorgan/phinx/bin/phinx migrate -c module/Monarc/FrontOffice/migrations/phinx.php
sudo php ./vendor/robmorgan/phinx/bin/phinx migrate -c module/Monarc/Core/migrations/phinx.php
dbarzin marked this conversation as resolved.
Show resolved Hide resolved
```


# 4. Create initial user

```bash
$ php ./vendor/robmorgan/phinx/bin/phinx seed:run -c ./module/Monarc/FrontOffice/migrations/phinx.php
sudo php ./vendor/robmorgan/phinx/bin/phinx seed:run -c ./module/Monarc/FrontOffice/migrations/phinx.php
```

The username is *[email protected]* and the password is *admin*.
Expand Down