forked from virtix/cfmongodb
-
Notifications
You must be signed in to change notification settings - Fork 34
/
index.cfm
33 lines (25 loc) · 856 Bytes
/
index.cfm
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
<html>
<head>
<style>
* {font-family: Tahoma,Arial,Helvetica,sans-serif;}
h1 {color: navy;}
.warning{ font-weight: bold; color: red;}
</style>
</head>
<body>
<h1>Welcome to CFMongoDB</h1>
<p>
To Get started, install and run <a href="http://www.mongodb.org/">MongoDB</a>.
Then, run <a href="examples/gettingstarted.cfm">Getting Started</a> to confirm everything works. Inspect the code to see how to use CFMongodDB.
<br><br>
View other pages in the examples package for additional usage.
</p>
<p>
<span class="warning">Important!</span> See PeopleList/Application.cfc for properly constructing and closing an application-scoped instance of Mongo.
</p>
<p>
Off you go!
</p>
<p><a href="https://github.com/marcesher/cfmongodb/wiki/_pages">Wiki</a></p>
</body>
</html>