Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/eftakhairul/epanneur-platform


https://github.com/eftakhairul/epanneur-platform

Last synced: about 1 month ago
JSON representation

Awesome Lists containing this project

README

        

# e-panneur Platform

### Version
0.0.1

### Installation (Tutorial based on OSX)

Install ruby 2.1.5:

```sh
rvm instal 2.1.5
```
Create gemset

```sh
rvm [email protected] --create
```

Mysql Isntallation (If you don't have installed mysql in your PC)

```sh
brew update
brew doctor
brew upgrade

brew install mysql
```

Restart the mysql

```sh
mysql.server restart
```

Start the mysql server at first time

```sh
mysql.server start
```

Secure mysql server

```sh
mysql_secure_installation
```

Create Database
```sh
mysql -u root -p[your_mysql_password]

> create database epanneur_dev;
> create user epanneur identified by 'epanneur';
> grant all on epanneur_dev.* to 'epanneur'@localhost;
> exit;
```

Clone the project

```sh
git clone [email protected]:epanneur-team/epanneur-platform.git
cd epanneur-platform
```

Run the project at 3000 port
```sh
rake db:migrate
rails s
```

Happy developing :)