This application is the development & poc version of the Tessify core codebase.
For detailed instructions see our Wiki.
git clone --recurse-submodules https://github.com/tessify-org/CORE-PoC.git
- Setup your environment (host file, database, virtualhosts if applicable etc..)
cp .env.example .env
nano .env
- Set database & credentials
DB_DATABASE=core
DB_USERNAME=youruser
DB_PASSWORD=yourpassword
php artisan key:generate
php artisan migrate --seed
php artisan storage:link
At this point the application should be available. Run the following commands for a live-reload version, which is recommended during development.
nano webpack.mix.js
adjust to your environmentnpm install
npm run watch
That's it!