A universal tech hires site for colleges
2
stars
3
forks
source link
Durham Hires
Installation Instructions
Requirements:
- PHP webserver with database
- Composer
- Clone the repo to your local computer
- Run 'composer install'
- Create a blank SQL database (utf8mb4)
- Copy the settings from .env.example to a new .env file and add database settings
- Run 'php artisan key:generate'
- Run 'php artisan migrate --seed'
- Go to the admins table in the newly created database and update the filler text (name, CIS username, email)
- Run 'php artisan serve' to start the development server
- Go to /admin and create your first site
Docker development
- Copy .env.docker.example to .env
- Update .env with GOOGLE_APP_ID and GOOGLE_APP_SECRET
- Run
docker-compose up --build
- Access the site at
http://localhost:8000