Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/os2forms/os2forms8
Drupal 8 installation for OS2Forms 2.0 Solution
https://github.com/os2forms/os2forms8
Last synced: about 2 months ago
JSON representation
Drupal 8 installation for OS2Forms 2.0 Solution
- Host: GitHub
- URL: https://github.com/os2forms/os2forms8
- Owner: OS2Forms
- License: gpl-2.0
- Created: 2020-03-12T12:16:41.000Z (almost 5 years ago)
- Default Branch: master
- Last Pushed: 2024-11-06T09:17:42.000Z (2 months ago)
- Last Synced: 2024-11-06T10:35:09.786Z (2 months ago)
- Language: PHP
- Size: 13.7 MB
- Stars: 5
- Watchers: 9
- Forks: 10
- Open Issues: 22
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# OS2Forms Drupal 8/9 project
[![Build Status](https://travis-ci.org/OS2Forms/os2forms8.svg?branch=master)](https://travis-ci.org/OS2Forms/os2forms8)
## Getting Started
These instructions will get you a copy of the project up and running on your local machine for development and testing purposes. See deployment for notes on how to deploy the project on a live system.
### Drupal 9 readiness.
At the current moment OS2Forms is ready to install or upgrade to Drupal 9 version.
PLAN THE UPGRADE TO DRUPAL 9 VERSION OF OS2FORMS **AS SOON AS POSSIBLE**
See detailed [steps to update your project to Drupal 9](https://github.com/OS2Forms/os2forms8/tree/develop#upgrade-from-drupal-8-to-drupal-9) below in this page.
Drupal 8 version is still maintained to get bugfixes.
However, due to EOL of Drupal 8 in November 2021 Drupal core will not get its security update.If you still use Drupal 8 version of OS2Forms you can use following branches to get updates on bugfixes or other issues:
- `master-d8`
- `staging-d8`
- `develop-d8`### Traditional
#### Installing
1. Clone the git repository
```sh
git clone [email protected]:OS2Forms/os2forms8.git
```2. Enter the newly created project directory
```sh
cd os2forms8
```3. Install dependencies
```sh
composer install
```4. Install drupal based on OS2Forms profile. Make sure you substitute the following variables:
* db_pass
* db_user
* db_host
* db_name
* account_password
* site_name
```sh
drush si os2forms8 --db-url=mysql://db_user:db_pass@db_host/db_name --account-pass=account_password --site-name="site_name"
```### With Docksal
#### Prerequisites
* [Docksal](https://docksal.io/)
#### Installing
1. Clone the git repository
```sh
git clone [email protected]:OS2Forms/os2forms8.git
```2. Enter the newly created project directory
```sh
cd os2forms8
```3. Start docksal environment
```sh
fin start
```4. Create local settings
```sh
cp web/sites/example.settings.local.php web/sites/default/settings.local.php
```5. Add file permission fix to settings.local.php. See https://docs.docksal.io/apps/drupal/#file-permissions
```php
// web/sites/default/settings.local.php$settings['file_chmod_directory'] = 0777;
$settings['file_chmod_file'] = 0666;
```6. Here you can choose to install a standard OS2forms or include the OS2forms Forløb module with necessary configurations.
```sh
# Option 1: Standard OS2forms test or development install
fin rebuild-test
```
```sh
# Option 2: OS2forms 2.1 med Forløb test or development install
fin build-forloeb
```7. Configure trusted hosts in settings.local.php (add the following if not present)
```php
// web/sites/default/settings.local.php$settings['trusted_host_patterns'] = ['^os2forms8.docksal$', '^localhost$'];
```You should now be able to browse to the application at `http://os2forms8.docksal`
## Deployment
These instructions will get you a copy of the project up and running on a live system.
For a more detailed description, you could look at the `web/core/INSTALL.txt` [here](./web/core/INSTALL.txt).### Prerequisites
* A HTTP server such as [Apache](https://httpd.apache.org/) that supports PHP
* Make sure that Apache vhost configured properly. [See requirements](https://www.drupal.org/docs/system-requirements/web-server-requirements#s-apache)
* A database service such as [MySQL](https://www.mysql.com/)
* PHP 7.4 with the following extensions enabled:
* gd
* curl
* simplexml
* xml
* dom
* soap
* mbstring
* zip
* database specific extension such as the mysql extension
* [Composer](https://getcomposer.org/)
* [Drush launcher](https://github.com/drush-ops/drush-launcher)### Installing
1. Clone the git repository
```sh
git clone [email protected]:OS2Forms/os2forms8.git
```
It assumes that you have configured your web-server to use path `[/vhost/path]/os2web8/web` as document root folder.2. Enter the newly created project directory
```sh
cd os2forms8
```3. Install dependencies without development dependencies
```sh
composer install --no-dev
```4. Create local settings
```sh
cp web/sites/default.settings.local.php web/sites/default/settings.local.php
```
5. Add databases settings to web/sites/default/settings.local.php```
$databases['default']['default'] = array (
'database' => '[dbname]',
'username' => '[dbuser]',
'password' => '[dbpass]',
'prefix' => '',
'host' => '[dbhost]',
'port' => '',
'namespace' => 'Drupal\\Core\\Database\\Driver\\mysql',
'driver' => 'mysql',
);
```6. Generate a salt string and insert it in web/sites/default/settings.local.php
```sh
# Generate salt string - this will output a new salt string
./vendor/bin/drush php-eval 'echo \Drupal\Component\Utility\Crypt::randomBytesBase64(55) . "\n";'
``````php
// web/sites/default/settings.php
$settings['hash_salt'] = ''; // Insert the generated salt string here
```7. Configure trusted hosts in web/sites/default/settings.local.php.
For more information on how to write this, see the section for [Trusted Host settings](https://www.drupal.org/docs/installing-drupal/trusted-host-settings)
in the official Drupal installation guide.
```php
// web/sites/default/settings.local.php$settings['trusted_host_patterns'] = [''];
```
8. Install DrupalUsing drush command:
```
# To install default OS2Forms
drush si os2forms8 --account-pass=account_password --site-name="OS2Forms"
# To install OS2Forms 2
drush si os2forms_forloeb_profile --account-pass=account_password --site-name="OS2Forms med forløb"
```Or visit the url for the os2forms application and follow the instructions
* Select the os2forms install profile for a default os2forms installation9. Enable OS2Forms modules
```sh
./vendor/bin/drush en os2forms, os2forms_nemid, os2forms_dawa, os2forms_sbsys
```## Development
During development display of all PHP warnings and errors should be enabled by
adding```php
'default',
'username' => 'root',
'password' => 'root',
'prefix' => '',
'host' => 'db',
'port' => '',
'namespace' => 'Drupal\\Core\\Database\\Driver\\mysql',
'driver' => 'mysql',
);
```Use `fin bash` or `fin drush [command]` to upload your database
You also need to add the rest drupal settings such as salt, sync/tmp folders,
trusted hosts
```
$settings['trusted_host_patterns'] = ['^os2forms8-dev.docksal$', '^localhost$'];
```### Code review policy
See [OS2Forms code review policy](https://github.com/OS2Forms/docs#code-review)### Git name convention
See [OS2Forms git name convention](https://github.com/OS2Forms/docs#git-guideline)### Github actions created for this porject.
See: https://github.com/OS2Forms/os2forms8/wiki/Creation-of-a-github-action-workflow