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
- Host: GitHub
- URL: https://github.com/daronenko/dotfile-sharing-service
- Owner: daronenko
- License: mit
- Created: 2023-10-29T08:41:26.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2024-02-19T17:30:36.000Z (over 1 year ago)
- Last Synced: 2024-04-22T15:21:02.553Z (about 1 year ago)
- Topics: bmstu, dotfile, ics6, iu6
- Language: Ruby
- Homepage:
- Size: 5.73 MB
- Stars: 2
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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)
---
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`
Run unit and integration tests (from root):
```sh
bundle exec rspec ./spec
```