An open API service indexing awesome lists of open source software.

https://github.com/daronenko/dotfile-sharing-service

dotfile sharing service that I created as homework for the course "Internet programming languages" at the ics6 department of bmstu
https://github.com/daronenko/dotfile-sharing-service

bmstu dotfile ics6 iu6

Last synced: 3 months ago
JSON representation

dotfile sharing service that I created as homework for the course "Internet programming languages" at the ics6 department of bmstu

Awesome Lists containing this project

README

        

# Dotop

dotfile sharing service that I created as homework for the course "Internet
programming languages" at the cs6 department of bmstu

## Contents

* [Images](#images)
* [Installation](#installation)
* [MacOS & Linux](#macos-linux-installation)
* [Testing](#testing)

## Images

---

## Installation

### MacOS & Linux

1. Install gems:

```sh
bundle install
```

2. Apply migrations:

```sh
bin/rails db:migrate
```

3. Run server:

```sh
bin/rails s -p 3000
```

4. Enjoy the service on `localhost:3000`

## Testing

Run unit and integration tests (from root):

```sh
bundle exec rspec ./spec
```