博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
sth about initial project with heroku(simple)
阅读量:5892 次
发布时间:2019-06-19

本文共 558 字,大约阅读时间需要 1 分钟。

hot3.png

Initial rails project by shell

create a new repository on https://github.com

$ cd ~/projects/rails

$ rails new project_name

$ cd project_name

$ git init

$ touch README.md

then fix file of Gemfile README.md and .gitignore  to lets it adapt to your project environment

$ git add . 

$ git commit -m "Initial commit"

$ git remote add prigin https://github.com/<username>/project_name.git

$ git push -u origin master

deploy on heroku:

$ heroku create project-name

$ git push heroku master

$ heroku urn rake db:migrate

转载于:https://my.oschina.net/coderman/blog/179445

你可能感兴趣的文章
Window常用命令集
查看>>
Linux下Docker安装
查看>>
***JAVA多线程的应用场景和应用目的举例
查看>>
12c 新特性-统一审计(Unified Auditing)
查看>>
利用Java.util.UUID来生成唯一ID(用来做数据库主键好用)
查看>>
ssh协议原理以及实现
查看>>
针对ireport多模版合并导出只能导出第一个模版数据的解决方案
查看>>
zabbix 自动发现 shell
查看>>
Juery 基础
查看>>
python中类的魔术方法
查看>>
httpclent调用webservice
查看>>
Leetcode 389. Find the Difference JAVA语言
查看>>
http请求错误码
查看>>
Linux中的configure,make,make install到底在做些什么
查看>>
umount 时出现的 "Device is busy"问题
查看>>
Gulp+browser-sync打造前端开发自动刷新
查看>>
ASA-vlan-interface
查看>>
深度遍历搜索
查看>>
Weblogic8.X安装及连接池配置指南
查看>>
一看就懂的设计模式--设计模式分类
查看>>