Quranic Audio Join Quran.com community
The source code for the upcoming version of quranicaudio.com.
npm install
npm run dev
npm run build
npm run start
This project uses a Postgres database. Assuming you have Postgres installed create a user/role quran_dev
then run the commands below:
psql -c 'create database audio_quran;' -U quran_dev
psql audio_quran < audio_quran.psql
psql -c 'GRANT ALL PRIVILEGES ON ALL TABLES IN SCHEMA public TO quran_dev;' -d audio_quran