diff options
Diffstat (limited to 'front-end/src/page/home/index.jsx')
-rw-r--r-- | front-end/src/page/home/index.jsx | 10 |
1 files changed, 4 insertions, 6 deletions
diff --git a/front-end/src/page/home/index.jsx b/front-end/src/page/home/index.jsx index 2bc2bd8..5022913 100644 --- a/front-end/src/page/home/index.jsx +++ b/front-end/src/page/home/index.jsx @@ -5,14 +5,12 @@ class Home extends React.Component{ render(){ return ( <div id="page-wrapper" className="jumbotron"> - <h1>Hello, world!</h1> + <h1>PostgreSQL Performance Farm</h1> <p> - The PostgreSQL Performance Farm project is a community project to collect performance data from tests as code changes are made to PostgreSQL. To support this effort, a database needs to be created for storing results, and a Web site developed to review results. - This project will focus on developing the Web site on top of the database. - The database will be using PostgreSQL in the back-end. Test results will come in the form of JSON and flat files. The Web application will be developed using the Django Web framework. + The PostgreSQL Performance Farm project is a community project to collect performance data from tests, as code changes are made to PostgreSQL. Test results come as JSON or flat files, and the server-side interface is deployed using the Django framework. </p> <p> - As an example, the PostgreSQL Build Farm site is a central repository for the results of testing source code changes for PostgreSQL as they occur, on a wide variety of platforms. + This website enables registered users to upload, browse and download test results for all machines. </p> {/*<button className="btn btn-warning">test</button>*/} @@ -21,4 +19,4 @@ class Home extends React.Component{ } } -export default Home;
\ No newline at end of file +export default Home; |