https://github.com/stats4sd/pathways-platform
https://github.com/stats4sd/pathways-platform
Last synced: 3 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/stats4sd/pathways-platform
- Owner: stats4sd
- License: gpl-3.0
- Created: 2023-04-12T16:47:12.000Z (about 3 years ago)
- Default Branch: dev
- Last Pushed: 2026-03-02T16:20:57.000Z (4 months ago)
- Last Synced: 2026-03-02T19:49:31.421Z (4 months ago)
- Language: PHP
- Size: 2.1 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 8
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Pathways Platform
# Development
This platform is built using Laravel/PHP. The front-end is written in VueJS and the admin panel uses Backpack for Laravel.
## Setup Local Environment
1. Clone repo: `git@github.com:stats4sd/pathways_platform.git`
2. Copy `.env.example` as a new file and call it `.env`
3. Update variables in `.env` file to match your local environment:
1. Check APP_URL is correct
2. Update DB_DATABASE (name of the local MySQL database to use), DB_USERNAME (local MySQL username) and DB_PASSWORD (local MySQL password)
4. Create a local MySQL database with the same name used in the `.env` file
5. Run the following setup commands in the root project folder:
```
composer install
php artisan key:generate
php artisan backpack:install
php artisan telescope:publish
php artisan updatesql
npm install
npm run dev
```
6. Migrate the database: `php aritsan migrate`