Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/coala/projects
A website that showcases interesting projects, using Angular JS.
https://github.com/coala/projects
angularjs gci gitbook gsoc jekyll mentors netlify projects research students thesis
Last synced: 5 days ago
JSON representation
A website that showcases interesting projects, using Angular JS.
- Host: GitHub
- URL: https://github.com/coala/projects
- Owner: coala
- License: agpl-3.0
- Created: 2017-01-17T09:35:47.000Z (about 8 years ago)
- Default Branch: master
- Last Pushed: 2023-04-30T01:10:09.000Z (over 1 year ago)
- Last Synced: 2025-01-10T07:29:20.771Z (12 days ago)
- Topics: angularjs, gci, gitbook, gsoc, jekyll, mentors, netlify, projects, research, students, thesis
- Language: JavaScript
- Homepage: https://projects.coala.io/
- Size: 913 KB
- Stars: 116
- Watchers: 24
- Forks: 222
- Open Issues: 97
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Projects
A website that showcases projects! **If you want to use it and it's not exactly
fitting your purpose, please do make upstream changes. We expect this project
to be of use to others and we're happy to make it more generic so it's easier
to adapt to other organizations.** This was built by coala community, to view
live projects visit [projects.coala.io](https://projects.coala.io)(It'd be nice to have an organization YML or so e.g.)
## Purpose
This is designed for GSoC but can be used for other initiatives at the same
time. We use it for research theses, GSoC, GCI and maybe others in the future.Why?
- It's way more appealing to students.
- You can search and filter projects.
- Project ideas as structured data are more concise and you're sure to have all
points covered - at the same time we can show students an overview and showing
the full information only when needed.
- A proper review process can be used for triaging and iterating on project
ideas.
- Stop wasting time maintaining a mentors list. This can be generated from the
projects.## Usage
### Dependencies
1. Install [asdf-vm](https://asdf-vm.github.io/asdf/#/core-manage-asdf-vm) for your OS.
2. Using asdf-vm, install [ruby](https://github.com/asdf-vm/asdf-ruby).
3. Install Jekyll$ gem install jekyll bundler
### Clone and Run
Clone coala Projects repository
$ git clone https://github.com/coala/projects.git
Run coala Projects website
$ cd projects
$ bundle install
$ bundle exec jekyll serveThen you can simply go to either of the following addresses in your browser to access the site:
127.0.0.1:4000
localhost:4000If you face problems while installing Jekyll or using its gem bundler you may go through its [troubleshooting docs](https://jekyllrb.com/docs/troubleshooting/)
## Defining Projects
Mentors and admins can define projects in markdown using the following structure and save it in the ``_projects`` folder with a relevant filename.
A sample project definition is available [here](https://github.com/coala/projects/blob/master/_projects/example.md)## Defining FAQs
Users can also add FAQs by simply creating a markdown file in _faq folder.
Format for faq markdown file is as follows:
```
---
Question:
---Answer
```## Multi Language Support
coala Projects supports multiple 'human languages'. To add a translation of a project
in a language, the following steps can be followed:- Create a folder with language code in ```data/locale``` folder.
- Create ```faq.json```, ```projects.json```, ```faq``` and ```projects``` folder
if they do not exist already.
- Add translated content of a project inside ```projects``` folder. The names of the
files should be the same.
- Similarly translated content of a faq goes inside ```data/locale/ < language-id > /faq```
folder.
- For the faq.json and projects.json metadata, refer to Bahasa and Hindi
Translations available in ```data/locale``` directory.
- Lastly, in ```resources/js/app.js``` file, Add the new language json in Language service.