-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
149 lines (134 loc) · 5.67 KB
/
index.html
File metadata and controls
149 lines (134 loc) · 5.67 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Edulify Open Source Projects</title>
<link rel="stylesheet" href="css/bootstrap.min.css">
<link rel="stylesheet" href="css/docs.min.css">
<link rel="stylesheet" href="//cdnjs.cloudflare.com/ajax/libs/highlight.js/8.6/styles/default.min.css">
</head>
<body>
<!-- Docs master nav -->
<header class="navbar navbar-static-top bs-docs-nav" id="top" role="banner">
<div class="container">
<div class="navbar-header">
<button class="navbar-toggle" type="button" data-toggle="collapse" data-target=".bs-navbar-collapse">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a href="#" class="navbar-brand">Edulify.com</a>
</div>
<nav class="collapse navbar-collapse bs-navbar-collapse" role="navigation">
<ul class="nav navbar-nav navbar-right">
<li><a href="#projects">Projects</a></li>
<li><a href="https://github.com/edulify">Github</a></li>
<li><a href="http://techtalk.edulify.com/">Blog</a></li>
</ul>
</nav>
</div>
</header>
<main class="bs-docs-masthead" id="content" role="main">
<div class="container">
<h1>Edulify.com Open Source</h1>
<p class="lead">We love Open Source. Here are some of our contributions.</p>
</div>
</main>
<div class="bs-docs-featurette">
<div class="container">
<div class="row">
<div class="col-sm-6 col-md-4">
<div class="thumbnail">
<div class="caption">
<h3>Play Sitemap Module</h3>
<hr />
<p>A <a href="http://www.playframework.com/">Playframework</a> module that automatically creates <a href="http://www.sitemaps.org/">sitemaps</a>.</p>
<p>
<a href="https://edulify.github.io/play-sitemap-module.edulify.com" class="btn btn-primary" role="button">Website</a>
<a href="https://github.com/edulify/play-sitemap-module.edulify.com" class="btn btn-default" role="button">Gitub Repository</a>
</p>
</div>
</div>
</div>
<div class="col-sm-6 col-md-4">
<div class="thumbnail">
<div class="caption">
<h3>Play Geolocation Module</h3>
<hr />
<p>A <a href="http://www.playframework.com/">Playframework</a> module for IP based geolocation, using <a href="http://freegeoip.net/">Freegeoip</a> or <a href="https://www.maxmind.com/en/country">Maxmind.</a></p>
<p>
<a href="https://edulify.github.com/play-geolocation-module.edulify.com" class="btn btn-primary" role="button">Website</a>
<a href="https://github.com/edulify/play-geolocation-module.edulify.com" class="btn btn-default" role="button">Gitub Repository</a>
</p>
</div>
</div>
</div>
<div class="col-sm-6 col-md-4">
<div class="thumbnail">
<div class="caption">
<h3>Play Currency Module</h3>
<hr />
<p>A <a href="http://www.playframework.com/">Playframework</a> module for currency conversation, using <a href="http://www.getexchangerates.com/">Get Exchange Rates</a>.</p>
<p>
<a href="https://edulify.github.com/play-currency-converter-module.edulify.com" class="btn btn-primary" role="button">Website</a>
<a href="https://github.com/edulify/play-currency-converter-module.edulify.com" class="btn btn-default" role="button">Gitub Repository</a>
</p>
</div>
</div>
</div>
<div class="col-sm-6 col-md-4">
<div class="thumbnail">
<div class="caption">
<h3>Play HikariCP Plugin</h3>
<hr />
<p>A <a href="http://www.playframework.com/">Playframework</a> plugin that uses <a href="https://github.com/brettwooldridge/HikariCP">HikariCP</a> instead of BoneCP.</p>
<p>
<a href="https://edulify.github.io/play-hikaricp.edulify.com" class="btn btn-primary" role="button">Website</a>
<a href="https://github.com/edulify/play-hikaricp.edulify.com" class="btn btn-default" role="button">Gitub Repository</a>
</p>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="bs-docs-featurette">
<div class="container">
<h2>Configuring Edulify Releases Repository</h2>
<p>Here you can see how to configure our releases repository so that you can use our modules and plugins.</p>
<hr />
<h3>Using <code>project/Build.scala</code>:</h3>
<div class="highlight"><pre><code class="scala">import sbt._
import Keys._
import play.Project._
object ApplicationBuild extends Build {
val appName = "your-app"
val appVersion = "1.0-SNAPSHOT"
val appDependencies = Seq(
// Add your project dependencies here,
javaCore,
javaJdbc,
javaEbean
)
val main = play.Project(appName, appVersion, appDependencies).settings(
// Add the line bellow to configure our repository
resolvers += Resolver.url("Edulify Repository", url("https://edulify.github.io/modules/releases/"))(Resolver.ivyStylePatterns)
)
}</code></pre></div>
<hr />
<h3>Using <code>build.sbt</code></h3>
<p>Just add the following line in your <code>build.sbt</code>:</p>
<div class="highlight"><pre><code class="scala">resolvers += Resolver.url("Edulify Repository", url("https://edulify.github.io/modules/releases/"))(Resolver.ivyStylePatterns)</code></pre></div>
</div>
</div>
<script src="js/jquery.min.js"></script>
<script src="js/bootstrap.min.js"></script>
<script src="//cdnjs.cloudflare.com/ajax/libs/highlight.js/8.6/highlight.min.js"></script>
<script>
$(document).ready(function() {
$('pre code').each(function(i, e) {hljs.highlightBlock(e)});
});
</script>
</body>
</html>