Skip to content
This repository has been archived by the owner on Feb 1, 2024. It is now read-only.

Latest commit

 

History

History
60 lines (42 loc) · 1.42 KB

structure.md

File metadata and controls

60 lines (42 loc) · 1.42 KB

Repository Structure

↩️ back

Hire in Social is a monolith repository, it holds all technologies, tools, source code and literally everything you as a developer might need. Please find an explanation about how to navigate across the project below.

Structure

.
├── LICENSE.md
├── README.md
├── ansible
│   └── vagrant
├── docs
│   ├── architecture
│   ├── requirements.md
│   └── structure.md
├── php
│   └── hireinsocial
├── ssl
│   ├── README.md
│   └── ca.crt
└── vagrant
    ├── README.md
    ├── Vagrantfile
    └── Vagrantfile.dist

(generated with tree command)

In most of those folders you will find additional explanation in markdown files.

ansible

Ansible playbooks used to:

  • Provision Vagrant
  • Deploy

docs

Documentation, keeps things mentioned in README.md

php/hireinsocial

PHP part of the project source code.

ssl

This is where Local Root CA is going to be generated after vagrant provision, it's used to generated SSL certicate for local development and can be used to make that certificate trusted in your browser.

vagrant

Vagrant configuration used to launch local development environment.


↩️ back