Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/zinovyev/rails-dev
It's a simple bootstrap to get a new Rails development environment up and running.
https://github.com/zinovyev/rails-dev
Last synced: 1 day ago
JSON representation
It's a simple bootstrap to get a new Rails development environment up and running.
- Host: GitHub
- URL: https://github.com/zinovyev/rails-dev
- Owner: zinovyev
- License: mit
- Created: 2016-12-26T13:29:03.000Z (about 8 years ago)
- Default Branch: master
- Last Pushed: 2016-12-26T21:54:04.000Z (about 8 years ago)
- Last Synced: 2024-11-08T21:12:34.594Z (about 2 months ago)
- Language: Makefile
- Size: 4.88 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Rails development environment
## About
It's a simple bootstrap to get a new Rails development environment up and running.
To get more information about running Rails environment with docker-compose take a look at official [Compose and Rails](https://docs.docker.com/compose/rails/) tutorial.## Set Up And Run
First you have to install docker and docker-compose. Here're some good guides to doing it depending on the OS you're running:
* [Docker installation guides](https://docs.docker.com/engine/installation);
* [Docker-compose installation guides](https://docs.docker.com/compose/install/);To **create a new application** from the bootstrap assuming that your project's name is `your-project` run:
```bash
git clone --depth 1 git://github.com/zinovyev/rails-dev.git your-project
cd your-project
make
```
Now you can visit your fresh rails installation on `localhost:3000`.To **stop application** use:
```bash
cd your-project
make stop
```
To **start application** use:
```bash
cd your-project
make start
```