cloud9

css not working on github pages

∥☆過路亽.° 提交于 2021-01-21 07:46:47
问题 I can't get my CSS to show on the site. I really can't figure out what I'm doing wrong here, I'm very new to all of this so I'm sure there's something I just can't see. here is the live site https://rusne118.github.io/mile-stone-one/4 here is my repo https://github.com/rusne118/mile-stone-one here is my css in my html here is my files on cloud9 回答1: Remember that GitHub pages are scoped with repo names . You are including your CSS with <link rel="stylesheet" href="/css/style.css"> This

Connection timeout error when sending mail from Zohomail using Nodemailer

半世苍凉 提交于 2020-01-24 12:25:48
问题 Below is my Node app.js code. With these settings, I am receiving a connection timeout error. Any idea what I am missing here? var nodemailer = require("nodemailer"); var transporter = nodemailer.createTransport({ host: 'smtp.zoho.com', port: 465, secure: true, // use SSL auth: { user: '<myemail@example.com>', pass: '<myemailpassword>' } }); var mailOptions = { from: "<fromemail@example.com>", to: "<toemail@example.com>", subject: "Hello", generateTextFromHTML: true, html: { path: './tmpl

Connection timeout error when sending mail from Zohomail using Nodemailer

霸气de小男生 提交于 2020-01-24 12:25:05
问题 Below is my Node app.js code. With these settings, I am receiving a connection timeout error. Any idea what I am missing here? var nodemailer = require("nodemailer"); var transporter = nodemailer.createTransport({ host: 'smtp.zoho.com', port: 465, secure: true, // use SSL auth: { user: '<myemail@example.com>', pass: '<myemailpassword>' } }); var mailOptions = { from: "<fromemail@example.com>", to: "<toemail@example.com>", subject: "Hello", generateTextFromHTML: true, html: { path: './tmpl

AWS Cloud9: Cannot open environment

 ̄綄美尐妖づ 提交于 2019-12-25 03:16:33
问题 I have created an environment in AWS Cloud9 with a Python Lambda function. This was working fine and for several days I was adding functionality. However one day the environment failed to open. After several minutes of loading it displayed an error message: This is taking longer than expected. If you think there might be an issue, contact AWS Support. It might be caused by VPC configuration issues. Please check documentation: https://docs.aws.amazon.com/cloud9/latest/user-guide/vpc-settings

Cannot Install / Use MySQL on Amazon Cloud9 Free Account

我的未来我决定 提交于 2019-12-25 00:34:09
问题 I'm trying to run MySQL commands on a free account with Amazon Cloud9 and I cannot get it to work anyhow. I've tried all the commands I've found on the internet, including mysql-ctl install , mysql-ctl start and mysql-ctl cli - all of them result in a discouraging bash: mysql-ctl: command not found . I think Amazon Cloud9 may have changed their rules regarding free accounts. Please, advise what to do. 回答1: These are the commands that you need. Write them to terminal. sudo service mysqld start

Cloud 9 want to change directory to my desktop

纵饮孤独 提交于 2019-12-24 10:12:50
问题 Is it possible to cd to my desktop when using the terminal in Cloud 9 for Rails environment? If not any folder on my local Hard Drive would be fine. 回答1: There is no built-in way to sync the code in your cloud9 workspace with your desktop machine. But you have several ways to copy files from and to your cloud9 workspace. 1. Git/Github You can use git and github (or any other distributed revision control system) to sync your code (i.e. Upload ( git push ) your code from cloud9 and later

Cloud9 + rails + Postgresql usage

做~自己de王妃 提交于 2019-12-20 05:54:14
问题 I can not set up a Rails app using Postgresql for development on Cloud9 (c9.io): the migration does not succeed. Common error: ~/workspace (master) $ rake db:migrate rake aborted! PG::ConnectionBad: could not connect to server: Connection refused Is the server running on host "0.0.0.0" and accepting TCP/IP connections on port 5432? 回答1: Cloud9 does not run PG by defalut. Below is the fast & easy way I use to use Postgresql on C9: 1. Gemfile.rb: gem 'pg' 2. Database.yml: default: &default

Run CouchDB in the background on Cloud9

て烟熏妆下的殇ゞ 提交于 2019-12-13 05:06:30
问题 I want to create a cloud9 automated setup script for an application, which uses couchdb for database. Part of the script, is the setup of the application database, which needs couchdb running, in order to function properly. The problem is that the only available solution about couchdb on cloud9 helps you instantiate couchdb as a foreground procedure. So if you want to test the correctness of the instantiation, or execute any other command you need to open a second terminal tab as documented

Cloud9, GitHub and Heroku (The page you were looking for doesn't exist.)

萝らか妹 提交于 2019-12-12 03:40:02
问题 I'm new to Ruby on Rails. I'm usin: / Cloud9 to make the ROR application / GitHub to store the files and update them / Hiroku for the production as a free service When I run the application on Cloud9, it works properly: https://ruby2016-bbparis.c9users.io/ When I push it to GitHub, it doesn't work on Heroku, and I get : The page you were looking for doesn't exist. You may have mistyped the address or the page may have moved. If you are the application owner check the logs for more information