https://github.com/tinawebdev/wiki-sinatra
Wiki app made with Sinatra
https://github.com/tinawebdev/wiki-sinatra
ruby sinatra
Last synced: 11 months ago
JSON representation
Wiki app made with Sinatra
- Host: GitHub
- URL: https://github.com/tinawebdev/wiki-sinatra
- Owner: tinawebdev
- Created: 2020-03-23T05:25:04.000Z (almost 6 years ago)
- Default Branch: master
- Last Pushed: 2023-03-16T06:17:14.000Z (almost 3 years ago)
- Last Synced: 2025-01-03T14:49:52.390Z (about 1 year ago)
- Topics: ruby, sinatra
- Language: CSS
- Homepage:
- Size: 8.79 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# wiki-sinatra
A wiki app made with Sinatra, a small light weight web framework written in Ruby.
Wiki pages can be created, edited, and deleted.
# How to use it
## Install Ruby
On linux, `apt-get install ruby` or `yum install ruby`. On OS X install Hombrew then `brew install ruby`.
On Windows use [RailsInstaller](http://railsinstaller.org/en).
## Check out the project
1. Open Terminal and change the current working directory to the location where you want the cloned directory to be made.
2. Download the repository using the [instruction](https://help.github.com/en/github/creating-cloning-and-archiving-repositories/cloning-a-repository).
3. In the command line go to the directory with the files downloaded:
```
cd wiki-sinatra
```
## Install Bundler
```
gem install bundler
```
## Bundle the project
```
bundle
```
## Run the Server
```
ruby wiki.rb
```
## Visit the Server
http://localhost:4567