Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/eftakhairul/epanneur-platform
https://github.com/eftakhairul/epanneur-platform
Last synced: about 1 month ago
JSON representation
- Host: GitHub
- URL: https://github.com/eftakhairul/epanneur-platform
- Owner: eftakhairul
- Created: 2015-07-05T18:03:51.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2015-07-05T18:05:08.000Z (over 9 years ago)
- Last Synced: 2023-03-12T08:03:47.297Z (almost 2 years ago)
- Language: Ruby
- Size: 152 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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 :)