Skip to content

Instantly share code, notes, and snippets.

View Alsaheem's full-sized avatar
Building awesome ideas

Ayomide Adebisi Alsaheem

Building awesome ideas
View GitHub Profile
@Alsaheem
Alsaheem / install-rabbitmq-centos-7.md
Created November 24, 2020 20:05 — forked from fernandoaleman/install-rabbitmq-centos-7.md
Install RabbitMQ on CentOS 7

Install RabbitMQ on CentOS 7

sudo yum -y install epel-release
sudo yum -y update

Install Erlang

Download repository

@Alsaheem
Alsaheem / RunDjangoAndNginxOnCentOS.md
Created August 12, 2020 08:42 — forked from alz-ahm/RunDjangoAndNginxOnCentOS.md
Running Django and Nginx on CentOS 7

How to run Django and Nginx on CentOS 7

I used this steps to install django on centOs for more than 10 times and it worked for me but it may not contain all the details you may need in your project.

Configure connections

nmtui

  • Edit a connection
  • fill connection information:
    • set IPv4 to Manual
    • set IPv4 address (172.16.20.xxx)
    • set Gateway to 172.16.20.2
@Alsaheem
Alsaheem / Python3 Virtualenv Setup.md
Created July 26, 2020 12:41 — forked from pandafulmanda/Python3 Virtualenv Setup.md
Setting up and using Python3 Virtualenv on Mac

Python3 Virtualenv Setup

Requirements
  • Python 3
  • Pip 3
$ brew install python3
@Alsaheem
Alsaheem / deploying_simple_api.md
Created March 22, 2020 18:32 — forked from prodeveloper/deploying_simple_api.md
Deploying your RESTful API to heroku

In this session, we are going to mimic a posts api that we worked on in a previous class. Typecode provides the free sample api.

APIs are what enable the backend, frontend and your mobile application to work together. We have also seen how to build basic REST api using Django Rest Framework

To get the post API to work we will need to work on four modules: