Controlling the flow of security event data, from detection to dispatch.
api/
contains the flask-based web apiwebapp/
contains the angular front-end
Please read CONTRIBUTING.md for details on our code of conduct, and the process for submitting pull requests to us.
Tasks are being managed in the Issues and Projects tabs. If you want to work on a particular issue, please assign yourself to it. Each issue should include a "definition of done" checklist that should be met before submitting a pull request to merge into the develop branch.
Backend
- Language: Python
- Database: PostgreSQL
- ORM: SQLAlchemy
- REST API: Flask
Frontend
- Language: Typescript
- Framework: Angular
- CSS: Bootstrap 4
Continuous Integration We are using CircleCI to build, test and deploy the project.
You don't need to be familar with all of these technologies to work on the project. We've tried to make the application decoupled, especially the front-end and back-end. If you want to work on a front-end task, you need to know a little Typescript, Angular and Bootstrap, but don't need to know anything about Flask/SQLAlchemy etc!
We are using Docker which means you don't need to install any of the dependencies on your local machine (except for docker itself). If you are already familiar with Docker and the technologies listed above, you can clone the repository to you local machine and bring up the database, back-end and front-end together with:
docker-compose build
docker-compose up
The front-end will then be available at localhost:8080 and the backend API at localhost:5000
If you are not familiar with this style of development, here is a more detailed description:
- Make sure you have the following installed on your machine:
- Git: Windows, Mac. (Linux users should install using their system's package manager)
- Docker: Windows, Mac, Linux (ensure you have the latest version!)
-
Ensure that docker is running on your machine by running
docker run hello-world
-
Clone (copy to your local machine) the repository using the command:
git clone https://github.com/Lyte-house/Lytehouse.git
-
Navigate to the Lytehouse folder (
cd Lytehouse
) -
Build the containers using
docker-compose build
- this will build the front-end, back-end and database together. It will take a fair bit of time the first time you do it, subsequently it will be much faster. If you get any errors, check the troubleshooting section below. If you get any other errors at this step, please get in touch! -
Launch the containers using
docker-compose up
- you should see messages like "Starting Lytehouse_webapp_1 ... done". You can then navigate to the application in your browser athttp://localhost:8080
. The back-end API can be found athttp://localhost:5000
(note, you won't see anything if you navigate to localhost:5000 in your browser) -
The first time you run the app, you may need to run the migrations to ensure that all the tables are created in the database. While the app is running (after following the previous step), run the following in another terminal/command prompt:
docker-compose run web python ./api/run.py db upgrade --directory api/migrations
Common errors you may get when running the docker-compose build
or docker-compose up
commands.
Error | Resolution |
---|---|
Error about "apt-get update -qq" failing | Run curl -sSL https://get.docker.com/ | sh and then rerun the docker-compose build command. |
driver failed programming external connectivity on endpoint | This is a common issue on Windows 10, try stopping all docker containers with docker stop $(docker ps -a -q) then restart docker on your machine and try again. See here for more information |
This project is licensed under the Apache 2.0 License - see the LICENSE file for details.
- TBC.