Giter Site home page Giter Site logo

simple-symfony-chat's Introduction

Simple Chat Application

  1. Installing the project

First clone this repository to your local machine.

Install the dependencies with composer:

composer install

Make sure that the app/logs, app/cache and db/ directories are writable for both the command line user and the web server user.

Create the sqlite database by running the migrations:

app/console doctrine:migrations:migrate
  1. Running the tests

You can run the tests with PHPUnit:

bin/phpunit -c app/
  1. Managing users

You can create new users and list exising users with the following commands:

app/console chat:user:create user1
app/console chat:user:create user2
app/console chat:user:list
+----+----------+
| id | username |
+----+----------+
| 1  | user1    |
| 2  | user2    |
+----+----------+
  1. Trying out the API

Start PHP's built-in web server:

app/console server:start

Go to the API documentation at http://127.0.0.1:8000/api/doc/ and try out the sandboxes:

Alt screenshot

Or use curl from a terminal:

curl -H "Content-Type: application/json" -d '{"author_id":"1","recipient_id":"2","content":"Hello World!"}' http://127.0.0.1:8000/message/send
curl -H "Content-Type: application/json" http://127.0.0.1:8000/message/get-messages?recipient_id=2

simple-symfony-chat's People

Contributors

duplamatyi avatar

Stargazers

Hennadii Tarasenko avatar

Watchers

James Cloos avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.