demo crypto exchange
1.0.0
Proyek pertukaran mata uang demo aplikasi satu halaman
Agar instalasi berhasil, Anda harus menginstal buruh pelabuhan.
Buka folder tempat Anda ingin memiliki file proyek, buka konsol, lalu klon repositori
git clone https://github.com/maciekiwaniuk/demo-crypto-exchange
Ubah folder di konsol menjadi folder yang dibuat dengan file proyek
cd demo-crypto-exchange
Jalankan buruh pelabuhan
docker-compose up -d
Salin file lingkungan
docker-compose exec php cp .env.dist .env
Jalankan instalasi komposer
docker-compose exec php composer install
Jalankan instalasi npm
docker-compose exec php npm install
Jalankan perintah npm run dev untuk mengkompilasi file js
docker-compose exec php npm run dev
Hasilkan kunci SSL
docker-compose exec php bin/console lexik:jwt:generate-keypair
Jalankan migrasi basis data ( Atur koneksi basis data di .env sebelum migrasi )
docker-compose exec php bin/console doctrine:migrations:migrate
Memuat perlengkapan
docker-compose exec php bin/console doctrine:fixtures:load --no-interaction
Anda sekarang dapat mengakses server di http://localhost:80
Jalankan tes
docker-compose exec php bin/phpunit
Jalankan pengujian unit frontend
docker-compose exec php npm run test
Jalankan tes E2E
npx cypress run