This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<template> | |
<section class="container"> | |
<a href="https://github.com/login/oauth/authorize?scope=user:email&client_id=87d59a5fead575683be3">Login with Github</a> | |
</section> | |
</template> | |
<script> | |
export default { | |
components: { |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
require('dotenv').config(); // Loads the environment variables from .env files (comes really handy) | |
const express = require('express'); | |
const cors = require('cors'); // Middleware for allowing requests from different origins | |
const bodyParser = require('body-parser'); | |
const axios = require('axios'); // HTTP Client | |
const app = express(); | |
app.use(cors()); | |
app.use(bodyParser.urlencoded({extended: false})); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
server { | |
index index.php; | |
server_name bretanart.com; | |
error_log /var/log/nginx/error.log; | |
access_log /var/log/nginx/access.log; | |
root /code/public; | |
location / { | |
try_files $uri $uri/ /index.php?$query_string; | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
version: '3' | |
services: | |
php: | |
image: php:fpm | |
volumes: | |
- ./code:/code | |
web: | |
image: nginx | |
ports: | |
- "8080:80" |