POS - Point of sales created with laravel
This is the first release of this POS containing some useful features.
First you need to download docker on your machine in order to run the local environment.
# move to the repository
cd point-of-sales
# start the services with docker-compose
docker-compose up -d
# To run any command like 'php artisan' 'npm install' run it inside the container
docker-compose exec app <your-command>
# Example to lift up the migrations
docker-compose exec app php artisan migrate --seed
I will improve the system little by little, adding new features.
Now we use vanilla Javascript in the sales section for speed up the creation of new sales, the next steps will create an API using authentification and try to consume it with Javascript in the frontend.
For this reason, I have to learn about APIs, javascript frameworks, and other technologies.
Coming soon.