One Paragraph of project description goes here
These instructions will get you a copy of the project up and running on your local machine for development and testing purposes. See deployment for notes on how to deploy the project on a live system.
Windows 10 | |
[LevelDown fails installation with NPM on windows 10.] | |
FIX: choco install microsoft-build-tools / npm install windows-build-tools | |
FIX 1: Install python, ie: choco install python, choco install python3.6 | |
FIX 2: Install windows sdk version 8.1, choco install windows-sdk-8.1 | |
FIX 3: Set Enviroment varible for python. | |
[Unable to find Electron App Error https://i.imgur.com/9lqLVhb.png] | |
FIX: npm run build && npm start | |
FIX 2: Check contents of package.json make sure "main" key exists. main.js is Electron Config file. |
People
:bowtie: |
😄 :smile: |
😆 :laughing: |
---|---|---|
😊 :blush: |
😃 :smiley: |
:relaxed: |
😏 :smirk: |
😍 :heart_eyes: |
😘 :kissing_heart: |
😚 :kissing_closed_eyes: |
😳 :flushed: |
😌 :relieved: |
😆 :satisfied: |
😁 :grin: |
😉 :wink: |
😜 :stuck_out_tongue_winking_eye: |
😝 :stuck_out_tongue_closed_eyes: |
😀 :grinning: |
😗 :kissing: |
😙 :kissing_smiling_eyes: |
😛 :stuck_out_tongue: |
#!/bin/bash | |
#console | |
echo [Quick Build Test] | |
kill -9 $(ps aux | grep '[i]nstacashd' | awk '{print $2}') | |
echo [killed daemon process] | |
cd instacash | |
make | |
echo make done | |
cd ~/ | |
cp ~/.instacash/instacash.conf ~/backup.conf |
Node / Iquidus Explorer Setup for Dummies | |
Pulse Crypto is used in this example. | |
This Tutorial is going to create a Daemon (node) and install Explorer. | |
THIS IS NOT GOING TO CREATE A GUI CLIENT. | |
Follow the instructions in [whatever coin name] docs folder Unix build - some builds are different. | |
I setup this up on both Ubuntu 15.10 and 16.04 with no issues. | |
You can create an account on vultr and get $50 free to be used in 2 months. |
FROM php:7.4-fpm-alpine | |
WORKDIR "/application" | |
# Install essential build tools | |
RUN apk add --no-cache \ | |
git \ | |
yarn \ | |
autoconf \ | |
g++ \ | |
make \ |
First install django and DRF:
pip3 install django djangorestframework
Step 1: Make a project and an app.
django-admin startproject projectname .
django-admin startapp apiname
Open a terminal window.
Navigate to the directory where you want to create the virtual environment. You can use the cd
command to change directories.
Run the following command to create a virtual environment with Python 3:
python3 -m venv venv_name