The perfect platform for brands and digital media influencers to connect and produce the most awesome campaigns!
Use the package manager pip (https://pip.pypa.io/en/stable/) to install the requirements
$ pip install requirements.txt
Create a postgres database with
name="plixxo"
password="pankaj"
Initially reset the migrations by using the following command
$ find . -path "*/migrations/*.py" -not -name "__init__.py" -delete
$ find . -path "*/migrations/*.pyc" -delete
Then create new migrations using the following command
$ python manage.py makemigrations
The execute the migrations using the following command
$ python manage.py migrate
The aws-shell requires python and pip to install. You can install the aws-shell using pip: Install the aws-shell using the following command
$ pip install aws-shell
Now you have to configure the aws shell, inorder to do that open your terminal and start the aws shell using the following command
$ aws-shell
Then run the configure command to configure the shell
aws> configure
The backend code requires some aws-boto3 packages to be installed. They can be installed using pip. Execute the following command to install the aws-boto3 packages
$ pip install PushToBucket-0.1.dev0-py3-none-any.whl
$ pip install PlixxoActivity-0.1.dev0-py3-none-any.whl
After completing the above steps now you are ready to start the server. Run the server using the following command
$ python manage.py runserver
If you haven't installed npm on your local then install it using the following command
$ npm install
Then after successfully installing the npm package manager build the frontend using the following command
$ npm build
Then finally start the frontend using the following command
$ npm start