Below are the CLI commands used in the deployment video of my NextJS + Express + TypeScript course.
Get the course here: https://codinginflow.com/nextjs
-
First login:
ssh root@<your-server-ip>
-
Update Linux packages:
Below are the CLI commands used in the deployment video of my NextJS + Express + TypeScript course.
Get the course here: https://codinginflow.com/nextjs
First login:
ssh root@<your-server-ip>
Update Linux packages:
https://www.youtube.com/watch?v=svEs1TafR7E
Note: You need to follow the tutorial in order to understand when and how to use the commands below
ssh root@
<?xml version="1.0" encoding="utf-8"?> | |
<manifest xmlns:android="http://schemas.android.com/apk/res/android" | |
package="com.codinginflow.collapsingtoolbar"> | |
<application | |
android:allowBackup="true" | |
android:icon="@mipmap/ic_launcher" | |
android:label="@string/app_name" | |
android:roundIcon="@mipmap/ic_launcher_round" | |
android:supportsRtl="true" |
package com.codinginflow.myawesomequiz; | |
public class Category { | |
public static final int PROGRAMMING = 1; | |
public static final int GEOGRAPHY = 2; | |
public static final int MATH = 3; | |
private int id; | |
private String name; |
package com.codinginflow.myawesomequiz; | |
public class Category { | |
public static final int PROGRAMMING = 1; | |
public static final int GEOGRAPHY = 2; | |
public static final int MATH = 3; | |
private int id; | |
private String name; |
package com.codinginflow.myawesomequiz; | |
public class Category { | |
public static final int PROGRAMMING = 1; | |
public static final int GEOGRAPHY = 2; | |
public static final int MATH = 3; | |
private int id; | |
private String name; |
package com.codinginflow.myawesomequiz; | |
public class Category { | |
public static final int PROGRAMMING = 1; | |
public static final int GEOGRAPHY = 2; | |
public static final int MATH = 3; | |
private int id; | |
private String name; |
package com.codinginflow.myawesomequiz; | |
import android.os.Parcel; | |
import android.os.Parcelable; | |
public class Question implements Parcelable { | |
public static final String DIFFICULTY_EASY = "Easy"; | |
public static final String DIFFICULTY_MEDIUM = "Medium"; | |
public static final String DIFFICULTY_HARD = "Hard"; |
package com.codinginflow.myawesomequiz; | |
import android.os.Parcel; | |
import android.os.Parcelable; | |
public class Question implements Parcelable { | |
public static final String DIFFICULTY_EASY = "Easy"; | |
public static final String DIFFICULTY_MEDIUM = "Medium"; | |
public static final String DIFFICULTY_HARD = "Hard"; |
package com.codinginflow.myawesomequiz; | |
import android.os.Parcel; | |
import android.os.Parcelable; | |
public class Question implements Parcelable { | |
private String question; | |
private String option1; | |
private String option2; | |
private String option3; |