https://skilledge.herokuapp.com/
Studio_Project.mp4
- Clone the repository:
git clone https://github.com/suhaillahmad/SkillEdge-Backend.gitTo run the server, you need to have Python installed on your machine. If you don't have it installed, you can follow the instructions here to install it.
- Install, Create and activate a virtual environment:
pip install virtualenv
virtualenv venvActivate the virtual environment
source venv/bin/activate- Install the dependencies:
pip install -r requirements.txt- Setup .env file in Bulk-Mailer-Backend/bulkmailer
EMAIL_HOST_USER = ''
EMAIL_HOST_PASSWORD = ''
DATABASE_NAME=''
DATABASE_USER=''
DATABASE_PASSWORD=''
CLOUD_NAME: ''
API_KEY: ''
API_SECRET: ''
PUBLIC_KEY =
SECRET_KEY =
- Create a PostgreSQL database and connect it by entering credentials in .env file, once connected run the migrate command
python manage.py migrate- Run the backend server on localhost:
python manage.py runserverYou can access the endpoints from your web browser following this url
http://127.0.0.1:8000- You can create a superuser executing the following commands
python manage.py createsuperuerA prompt will appear asking for email followed by password. To access the django admin panel follow this link and login through superuser credentials
http://127.0.0.1:8000/admin/- Start the Celery worker (On a separate terminal with activated virtual environment):
celery -A bulkmailer.celery worker --pool=solo -l info- Run celerybeat (On a separate terminal with activated virtual environment):
celery -A bulkmailer beat -l infohttps://github.com/suhaillahmad (Suhail Ahmad)
https://github.com/Tech-Shreyansh (Shreyansh Agrawal)












