Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/adamwbowman/qa
Q&As is a stackoverflow knock-off written with Meteor.
https://github.com/adamwbowman/qa
meteorjs mongodb
Last synced: 6 days ago
JSON representation
Q&As is a stackoverflow knock-off written with Meteor.
- Host: GitHub
- URL: https://github.com/adamwbowman/qa
- Owner: adamwbowman
- Created: 2014-08-27T18:34:08.000Z (about 10 years ago)
- Default Branch: master
- Last Pushed: 2014-11-23T22:45:08.000Z (almost 10 years ago)
- Last Synced: 2024-04-27T18:50:22.245Z (7 months ago)
- Topics: meteorjs, mongodb
- Language: JavaScript
- Homepage: http://qas.meteor.com
- Size: 259 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 7
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
## Q&As
Q&As is a stackoverflow knock-off written with Meteor.Try a demo here: http://qas.meteor.com
If you're interested in working on this project, first grab Meteor here:
```javascript
$ curl https://install.meteor.com/ | sh
```Then clone the repo.
## Configuration
Client side configurations are at the beginning of the client/main.js here:
- strTitleDisplay: Grey application title displayed in the heder is set here```javascript
/////////////////////////////////////////////////
// Application Configs...
// Set config values here:
var strTitleDisplay = 'Q&As';
```Server side configurations are at the beginning of the server/main.js here:
- strAdminEmail: All notification email are sent from this address```javascript
/////////////////////////////////////////////////
// Application Configs...
// Set config values here:
var strAdminEmail = '[email protected]';
```