Skip to content

freewind/replay

 
 

Repository files navigation

关于Replay

众所周知,官方已经不再支持Play1.x,转而全力开发scala版的play2.x。我很喜欢play1.x,它给我带来了很多欢乐和开发时的愉快,所以我想对它继续支持。

这个项目取名为Replay,表示“继续Play”之意。

主要任务:

1. 修改Play中发现的bug
2. 移除Play1.x中的某些功能,如scala支持(如果想用scala,可直接使用play2)
3. 继续改进Play

本项目fork于官方的Play1.2.5。欢迎大家在这里提issue,或者fork这个项目,严重欢迎发Pull Request,建立一个我们Play爱好者们自己的Play。
-—-

Welcome to Play framework

Play framework makes it easier to build Web applications with Java. It is a clean alternative to bloated Enterprise Java stacks. It focuses on developer productivity and targets RESTful architectures. Play is a perfect companion to agile software development.

Learn more on the http://www.playframework.org website.

Getting started

1. Install the latest version of Play framework and unzip it anywhere you want:

unzip play-1.2.zip -d /opt/play-1.2

2. Add the play script to your PATH:

export PATH=$PATH:/opt/play-1.2

3. Create a new Play application:

play new /opt/myFirstApp

4. Run the created application:

play run /opt/myFirstApp

5. Go to localhost:9000/ and you’ll see the welcome page.

6. Start developing your new application:

Get the source

Fork the project source code on Github:

git clone git://github.com/playframework/play.git

The project history is pretty big. You can pull only a shallow clone by specifying the number of commits you want with —depth:

 git clone git://github.com/playframework/play.git --depth 10

Reporting bugs

Please report bugs on our lighthouse tracker.

Licence

Play framework is distributed under Apache 2 licence.

Packages

No packages published

Languages

  • Python 78.3%
  • Java 15.2%
  • JavaScript 5.7%
  • Other 0.8%