https://github.com/itk-dev/nscn
Nordic smart city network
https://github.com/itk-dev/nscn
Last synced: 12 months ago
JSON representation
Nordic smart city network
- Host: GitHub
- URL: https://github.com/itk-dev/nscn
- Owner: itk-dev
- Created: 2018-05-07T07:58:58.000Z (almost 8 years ago)
- Default Branch: master
- Last Pushed: 2022-09-20T06:59:33.000Z (over 3 years ago)
- Last Synced: 2025-02-13T08:17:14.374Z (about 1 year ago)
- Language: JavaScript
- Size: 9.31 MB
- Stars: 1
- Watchers: 7
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
This is a composer based installer for the [Open Social distribution](http://www.drupal.org/project/social).
# Prerequisites
1. [Composer](https://getcomposer.org/download/)
It's just composer, isn't it awesome? :)
## Installation of Open Social
```
composer create-project goalgorilla/social_template:dev-master DIRECTORY --no-interaction
```
Composer will create a new directory called DIRECTORY. Inside you will find the html directory with the entire code base of [Open Social distribution](http://www.drupal.org/project/social). You should be able to install it like any other Drupal site.
## Learn more about Composer for Drupal
Checkout this [presentation](https://docs.google.com/presentation/d/1gxcxT6o47xVrfsZ7ZSQKjBRT-gfE54A1Z9kjvvGHwCo/edit#slide=id.p) from @ModsUnraveled.
## Installation instructions for development
- Requires: https://github.com/aakb/itkdev-docker
Setup Docker environment (Optional):
```
itkdev-docker-compose up -d
```
Get php packages
```
itkdev-docker-compose composer install
```
Setup local site configuration:
```
cp web/sites/default/_docker.settings.local.php web/sites/default/docker.settings.local.php
cp web/sites/default/_services.local.yml web/sites/default/services.local.yml
```
Install site:
```
itkdev-docker-compose vendor/bin/drush site-install minimal --existing-config -y
```
## Sync files and DB
```
itkdev-docker-compose sync
```