-
Use the Download button on www.cursor.com web site. It will download the
NAME.AppImagefile. -
Copy the .AppImage file to your Applications directory
cd ~/Downloads
mkdir -p ~/Applications
mv NAME.AppImage ~/Applications/cursor.AppImageUse the Download button on www.cursor.com web site. It will download the NAME.AppImage file.
Copy the .AppImage file to your Applications directory
cd ~/Downloads
mkdir -p ~/Applications
mv NAME.AppImage ~/Applications/cursor.AppImage| APP_KEY= | |
| APP_ENV=local | |
| APP_DEBUG=true | |
| APP_URL=http://127.0.0.1:8000 | |
| DB_CONNECTION=mysql | |
| DB_HOST=127.0.0.1 | |
| DB_PORT=3306 | |
| DB_DATABASE=laravel | |
| DB_USERNAME=root |
| FROM sirajul/php74-fpm:latest | |
| RUN pecl install xdebug | |
| #RUN docker-php-ext-enable xdebug | |
| RUN mkdir -p /home/xdebug | |
| COPY ./docker/php/xdebug-debug.ini /home/xdebug/xdebug-debug.ini | |
| COPY ./docker/php/xdebug-default.ini /home/xdebug/xdebug-default.ini | |
| COPY ./docker/php/xdebug-off.ini /home/xdebug/xdebug-off.ini | |
| COPY ./docker/php/xdebug-profile.ini /home/xdebug/xdebug-profile.ini |
| --- | |
| version: "2" | |
| services: | |
| emby: | |
| image: linuxserver/emby | |
| container_name: emby | |
| environment: | |
| - PUID=998 | |
| - PGID=100 | |
| - TZ=America/Denver |
| 1.- Descargar Postman | |
| https://www.postman.com/downloads/ | |
| 2.- Descomprimirlo | |
| tar zxf Postman-*.tar.gz |
| # Ubuntu 20 LTS Server Setup for Laravel | |
| # Login as root user | |
| sudo su - | |
| # Update list of available packages | |
| apt update |
See how a minor change to your commit message style can make a difference.
git commit -m"<type>(<optional scope>): <description>" \ -m"<optional body>" \ -m"<optional footer>"
| #!/bin/bash | |
| # Forticlient SSL VPN Client / expect | |
| # -------------------------------------------- | |
| # CONFIGURATION | |
| FORTICLIENT_PATH="" |
| #!/bin/sh | |
| ######################################################## | |
| # Bash script to install HeavyGari Laravel App | |
| # Written by Talha Ibne Imam | |
| ######################################################## | |
| HC='\033[0;32m' # Heading Color | |
| WC='\033[0;33m' # Warning Color | |
| NC='\033[0m' # No Color |