Skip to content
This repository has been archived by the owner on Apr 2, 2019. It is now read-only.

Commit

Permalink
Put original readme below NOTICE
Browse files Browse the repository at this point in the history
  • Loading branch information
RonaldDijkstra committed Nov 8, 2017
1 parent 2c9ab0d commit ca865b6
Showing 1 changed file with 53 additions and 5 deletions.
58 changes: 53 additions & 5 deletions README.md
@@ -1,9 +1,57 @@
**We recently moved LearningSpaces to CAPP Agile Learning:**

**[English](https://en.defacto.nl/capp-agile-learning/)**
**[Nederlands](https://www.defacto.nl/capp-agile-learning/)**
**[Deutsch](https://www.defactolearning.de/capp-agile-learning/)**

**The original branch of the LearningSpaces website [can be found here](https://github.com/DefactoSoftware/LearningSpaces-Landing/tree/original)**

---

## LearningSpaces Landingpage

We recently moved LearningSpaces to CAPP Agile Learning:
[LearningSpaces](https://learningspaces.io) lets you quickly set up a learning community where you create and share knowledge with your team.

#### Serve and Build
We serve and build our localized websites using different `-e` environment flags:

```bash
# Serve using a single locale
bundle exec middleman -e en
bundle exec middleman -e nl
bundle exec middleman -e de

# Build using a single locale
bundle exec middleman build -e en
bundle exec middleman build -e nl
bundle exec middleman build -e de
```

Builds can be found in the `build` directory and the server runs at http://localhost:4567.

You can still serve and build without specifying an environment (for development purposes only). This will build all additional locales as subdirectories, e.g. `/nl` or `/de`.
Note that serving or building single locales using environments doesn't have i18n fallback.

#### Deploy
Build and deploy to Amazon S3:
```bash
# Deploy all locales
./deploy

# Deploy single locale
./deploy en
./deploy nl
./deploy de
```

#### Useful links for debugging

- [http://localhost:4567/__middleman/config/](http://localhost:4567/__middleman/config/)
- [http://localhost:4567/__middleman/sitemap/](http://localhost:4567/__middleman/sitemap/)

#### Dependencies

[English](https://en.defacto.nl/capp-agile-learning/)
[Nederlands](https://www.defacto.nl/capp-agile-learning/)
[Deutsch](https://www.defactolearning.de/capp-agile-learning/)
- Ruby 2.2.0
- Bundler

The original branch of the LearningSpaces website [can be found here](https://github.com/DefactoSoftware/LearningSpaces-Landing/tree/original)
To install other dependencies run `bundle install` from the root of the project

0 comments on commit ca865b6

Please sign in to comment.