-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
... and added MIT LICENSE
- Loading branch information
Showing
4 changed files
with
76 additions
and
15 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
MIT License | ||
|
||
Copyright (c) 2018 AbhinavNepal | ||
|
||
Permission is hereby granted, free of charge, to any person obtaining a copy | ||
of this software and associated documentation files (the "Software"), to deal | ||
in the Software without restriction, including without limitation the rights | ||
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell | ||
copies of the Software, and to permit persons to whom the Software is | ||
furnished to do so, subject to the following conditions: | ||
|
||
The above copyright notice and this permission notice shall be included in all | ||
copies or substantial portions of the Software. | ||
|
||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR | ||
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, | ||
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE | ||
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER | ||
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, | ||
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE | ||
SOFTWARE. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,24 +1,19 @@ | ||
# README | ||
# AbhinavNepal | ||
|
||
This README would normally document whatever steps are necessary to get the | ||
application up and running. | ||
[![License: MIT](https://img.shields.io/badge/License-MIT-blue.svg)](https://github.com/AbhinavNepal/abhinav-nepal/blob/master/LICENSE) | ||
|
||
Things you may want to cover: | ||
[AbhinavNepal](https://abhinavnepal.com) is an open source, Ruby on Rails platform that provides useful resources to help anyone interested in doing science and innovation related works in or for Nepal. | ||
|
||
* Ruby version | ||
### Setup | ||
|
||
* System dependencies | ||
Please read the [SETUP.md](https://github.com/AbhinavNepal/abhinav-nepal/blob/master/SETUP.md) file for instructions. | ||
|
||
* Configuration | ||
### Contributing | ||
|
||
* Database creation | ||
We encourage any contributions to make AbhinavNepal better. For bug fixes, please fork this repo and send us a pull request. | ||
|
||
* Database initialization | ||
If you'd like to add a cool new feature, please [create an issue](https://github.com/AbhinavNepal/abhinav-nepal/issues/new) to discuss about what you want to do. | ||
|
||
* How to run the test suite | ||
### License | ||
|
||
* Services (job queues, cache servers, search engines, etc.) | ||
|
||
* Deployment instructions | ||
|
||
* ... | ||
AbhinavNepal is licensed under the [MIT License](https://github.com/AbhinavNepal/abhinav-nepal/blob/master/LICENSE). |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,45 @@ | ||
# Configure Using Gemfile | ||
# gem 'pg' | ||
# | ||
|
||
default: &default | ||
adapter: postgresql | ||
encoding: unicode | ||
host: localhost | ||
username: <%= ENV["POSTGRES_USER"] %> | ||
password: <%= ENV["POSTGRES_PASSWORD"] %> | ||
pool: <%= ENV.fetch("RAILS_MAX_THREADS") { 5 } %> | ||
|
||
# Connect on a TCP socket. Omitted by default since the client uses a | ||
# domain socket that doesn't need configuration. Windows does not have | ||
# domain sockets, so uncomment these lines. | ||
#host: localhost | ||
|
||
# The TCP port the server listens on. Defaults to 5432. | ||
# If your server runs on a different port number, change accordingly. | ||
#port: 5432 | ||
|
||
# Schema search path. The server defaults to $user,public | ||
#schema_search_path: myapp,sharedapp,public | ||
|
||
# Minimum log levels, in increasing order: | ||
# debug5, debug4, debug3, debug2, debug1, | ||
# log, notice, warning, error, fatal, and panic | ||
# Defaults to warning. | ||
#min_messages: notice | ||
|
||
development: | ||
<<: *default | ||
database: abhinav_dev | ||
|
||
|
||
# Warning: The database defined as "test" will be erased and | ||
# re-generated from your development database when you run "rake". | ||
# Do not set this db to the same as development or production. | ||
test: | ||
<<: *default | ||
database: abhinav_test | ||
|
||
production: | ||
<<: *default | ||
database: abhinav_prod |