Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
26 commits
Select commit Hold shift + click to select a range
4ea0abf
LOOP-818: Renamed taxonomy vocabularies
rimi-itk Feb 18, 2021
438252c
LOOP-818: Moved config
rimi-itk Feb 18, 2021
e7e46a9
LOOP-818: Moved config into modules
rimi-itk Feb 18, 2021
8125b21
LOOP-818: Added Drush config commands
rimi-itk Feb 19, 2021
f1c8f73
LOOP-818: Updated taxonomy config
rimi-itk Feb 19, 2021
eb98c05
LOOP-818: Updated command
rimi-itk Feb 19, 2021
dd4ee1d
LOOP-818: Fixed fixtures
rimi-itk Feb 19, 2021
c6d79cd
LOOP-818: Updated module config
rimi-itk Feb 19, 2021
4e4dc8d
LOOP-818: Updated documentation
rimi-itk Feb 19, 2021
647c71c
LOOP-818: Removed superfluous module
rimi-itk Feb 19, 2021
6b5a661
LOOP-818: Ignored config export folder
rimi-itk Feb 19, 2021
2efe221
LOOP-818: Fixed references in fixtures
rimi-itk Feb 19, 2021
21c201c
LOOP-818: Updated documentation
rimi-itk Feb 19, 2021
72cdefc
LOOP-818: Added rename config command
rimi-itk Feb 23, 2021
a7b6c4b
LOOP-818: Updated module config
rimi-itk Feb 24, 2021
21a38c0
LOOP-818: Fixed typos in installation documentation
rimi-itk Feb 24, 2021
59b9749
LOOP-818: Removed left over config
rimi-itk Feb 24, 2021
68dd6ad
LOOP-818: Renamed rev_date to revision_date
rimi-itk Feb 24, 2021
974f65d
LOOP-818: Updated developer documentation
rimi-itk Feb 24, 2021
5ac5e5f
LOOP-818: Fixed service identifier
rimi-itk Feb 24, 2021
97fc787
LOOP-818: Updated documentation
rimi-itk Feb 26, 2021
023bd1b
LOOP-818: Added os2loop documents config
rimi-itk Mar 2, 2021
cccab8e
LOOP-818: Added missing config
rimi-itk Mar 2, 2021
90e339b
LOOP-818: Fixed taxonomy references
rimi-itk Mar 2, 2021
093ecc9
LOOP-818: Updated composer stuff
rimi-itk Mar 2, 2021
0821bb6
LOOP-818: Updated developer documentation
rimi-itk Mar 2, 2021
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
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -186,6 +186,7 @@
# We want all custom site settings in settings.local.php
/web/sites/*/settings.local.php
!/web/sites/*/settings.php
config/sync/

# Ignore PhpStorm
.idea
Expand All @@ -195,3 +196,5 @@ private-files/

# Ignore VS-code
.vscode
node_modules/
yarn-error.log
4 changes: 4 additions & 0 deletions .markdownlint.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
{
"default": true,
"line-length": { "code_blocks": false }
}
22 changes: 18 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,27 +25,36 @@ EOF

```sh
composer install --no-dev --optimize-autoloader
vendor/bin/drush --yes site:install os2loop --existing-config
vendor/bin/drush --yes site:install os2loop --site-name='OS2Loop'
```

Install the modules you need, e.g.:

```sh
vendor/bin/drush pm:enable os2loop_question --yes
```

### Development

See [docs/development](docs/development/README.md) for details on development.

```sh
docker-compose up --detach
docker-compose exec phpfpm composer install
docker-compose exec phpfpm vendor/bin/drush --yes site:install os2loop --existing-config
docker-compose exec phpfpm vendor/bin/drush --yes site:install os2loop --site-name='OS2Loop'
# Get the site url
echo "http://$(docker-compose port nginx 80)"
# Get admin sign in url
docker-compose exec phpfpm vendor/bin/drush --yes --uri="http://$(docker-compose port nginx 80)" user:login
docker-compose exec phpfpm vendor/bin/drush --yes \
--uri="http://$(docker-compose port nginx 80)" user:login
```

#### Using `symfony` binary

```sh
docker-compose up --detach
symfony composer install
symfony php vendor/bin/drush --yes site:install os2loop --existing-config
symfony php vendor/bin/drush --yes site:install os2loop --site-name='OS2Loop'
# Start the server
symfony local:server:start --port=8000 --daemon
# Get the site url
Expand All @@ -69,3 +78,8 @@ vendor/bin/drush --yes cache:rebuild
composer check-coding-standards
composer apply-coding-standards
```

```sh
docker run --volume ${PWD}:/app --workdir /app node:latest yarn install
docker run --volume ${PWD}:/app --workdir /app node:latest yarn coding-standards-check
```
126 changes: 50 additions & 76 deletions composer.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

24 changes: 0 additions & 24 deletions config/sync/.htaccess

This file was deleted.

3 changes: 0 additions & 3 deletions config/sync/better_formats.settings.yml

This file was deleted.

22 changes: 0 additions & 22 deletions config/sync/block.block.claro_breadcrumbs.yml

This file was deleted.

Loading