Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Streamline dev #783

Merged
merged 1 commit into from
Feb 15, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
7 changes: 7 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -30,3 +30,10 @@ package: clean
node tasmoadmin/minify.js
tar -zcf ./_releases/tasmoadmin_${BUILD_VERSION}.tar.gz tasmoadmin
zip -q -r ./_releases/tasmoadmin_${BUILD_VERSION}.zip tasmoadmin

dev:
./.docker/docker.sh prepare
composer install -d tasmoadmin
cd tasmoadmin; npm ci
node tasmoadmin/minify.js
docker-compose build --no-cache && docker-compose up
5 changes: 1 addition & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -79,10 +79,7 @@ Provided is a docker-compose setup to ease getting started.
Simply run:

```bash
./.docker/docker.sh prepare
composer install -d tasmoadmin
npm install --prefix tasmoadmin
docker-compose up
make dev
```

Then visit http://localhost:8000
Expand Down