https://github.com/influxow/udemy-project-1
https://github.com/influxow/udemy-project-1
Last synced: 3 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/influxow/udemy-project-1
- Owner: InfluxOW
- Created: 2020-03-27T17:33:34.000Z (about 5 years ago)
- Default Branch: master
- Last Pushed: 2023-01-06T02:43:42.000Z (over 2 years ago)
- Last Synced: 2025-01-13T16:47:51.419Z (4 months ago)
- Language: PHP
- Size: 1.77 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 27
-
Metadata Files:
- Readme: README.md
- Audit: audit-resolve.json
Awesome Lists containing this project
README
# Just A Blog
[](https://codeclimate.com/github/InfluxOW/udemy-project-1/maintainability)
[https://udemy-project-1.herokuapp.com/](https://udemy-project-1.herokuapp.com/) \
Simple forum made by [Udemy.com](https://www.udemy.com/course/laravel-beginner-fundamentals) course.# Development Setup
1. Run `make setup` to install dependencies, generate .env file, create SQLite database, apply migrations.
2. Run `make seed` if you want to seed the database.
3. Fill `.env` keys that are responsible for e-mail sending and AWS connection (they starts with MAIL_ and AWS_). Set `APP_DEBUG` as `true` if you want Debugbar to be enabled.
4. Run `make run` to launch web server (http://localhost:8000).
5. Run `make queue` to process the job queue.
6. Run `make lint test` to run linter and tests.
# Heroku Setup
1. Add Heroku Postgres addon.
2. Set all necessary `.env` keys.
3. Run `heroku ps:scale web=1 sqs=1 --app your-heroku-app`