Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/octahedroid/drupal-boina
The Drupal Boina Distribution
https://github.com/octahedroid/drupal-boina
Last synced: 2 months ago
JSON representation
The Drupal Boina Distribution
- Host: GitHub
- URL: https://github.com/octahedroid/drupal-boina
- Owner: octahedroid
- License: gpl-2.0
- Archived: true
- Created: 2019-01-29T14:07:24.000Z (almost 6 years ago)
- Default Branch: master
- Last Pushed: 2019-11-12T04:29:33.000Z (about 5 years ago)
- Last Synced: 2024-03-31T05:10:22.597Z (10 months ago)
- Language: PHP
- Size: 1.45 MB
- Stars: 30
- Watchers: 4
- Forks: 4
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Drupal Boina Distribution
Drupal 8 has plenty of contributed modules to help you building a headless/decoupled web application. However, getting all the those setup correctly can be a daunting task.
The Drupal Boina Distribution, comes with everything you need (code, configuration and even default content), all that will be added to your site during the installation process so you can start working with the Boina Gatsby Starter immediately.
## Project dependencies
* [git](https://git-scm.com/)
* [docker](https://www.docker.com/)
* [ahoy (ver 2)](https://github.com/ahoy-cli/ahoy)## Project setup
### Clone repository
```bash
git clone [email protected]:weknowinc/drupal-boina.git
```### Copy .env file
```bash
cp .env.dist .env
```### Add hostname entry in your /etc/hosts file
```bash
127.0.0.1 drupal-boina.develop
```### Start containers
```bash
ahoy up
```### Install Composer dependencies
```bash
ahoy composer install
```### Install Boina distribution
```bash
ahoy drupal boina:install
```### Login site
Open browser and point to `http://drupal-boina.develop/user/login` and enter user/passwrod as `admin/admin`
> NOTE: Make sure you update admin user using a strong password.
### Reset password
```bash
ahoy drupal user:password:reset admin [ENTER_YOUR_DESIRE_PASSWORD]
```### Generate a one time login link
```bash
ahoy drupal user:login:url admin
```