Skip to content

playframework/play1

Repository files navigation

Welcome to Play framework

GitHub Discussions Gitter Contributors StackOverflow

Build Status Repository size Mergify Status

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 https://www.playframework.com website.

Getting started

  1. Install the latest version of Play framework and unzip it anywhere you want:
unzip play-*.zip -d /opt/play
  1. Add the play script to your PATH:
 export PATH=$PATH:/opt/play
  1. Create a new Play application:
play new /opt/myFirstApp
  1. Run the created application:
play run /opt/myFirstApp
  1. Go to localhost:9000/ and you’ll see the welcome page.

  2. Start developing your new application:

Get the source

Fork the project source code on Github

git clone git://github.com/playframework/play1.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/play1.git --depth 10

Reporting bugs

Please report bugs on our tracker.

Learn More

Licence

Licensed under the Apache License, Version 2.0 (the "License"); you may not use this project except in compliance with the License. You may obtain a copy of the License at https://www.apache.org/licenses/LICENSE-2.0.

Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.