Posts

RoR Deployment on Google Cloud Platform

Image
  Overview This application is a simple web application-based login form implemented with Ruby on Rails where Ruby is an interpreted, high level, object oriented programming language and Rails is a framework.  The application is deployed on Google Cloud Platform . Goals Application accepts username and password. For valid credentials, it displays a message “Login successful! You are logged in as (loggedin_username) ” Valid logged in users can log out successfully . Application accepts username and password. For invalid credentials, it displays a message “Authentication failed! Please enter correct credentials.” Specifications Programming language : Ruby  Web application framework : Rails (MVC) Deployment : Google Cloud Platform Source code : https://github.com/amrutapednekar/authentication_app Deployment on Google Cloud Platform New project Created a new project on Google Cloud Platform.  Open cloud shell terminal Clone application code Application code is cloned fro...

Introduction to PostgreSQL

Image
  Introduction to PostgreSQL CREATOR: Amruta Ashish Pednekar What is PostgresQL ? Database For   Storing Data Database system which stores data into tables for easy access Install PostgresQL  Go to https://www.postgresql.org/download/ Select your opening system family Download installer Click on downloaded installer and run as administrator Enter admin password. It will start installation. Click on NEXT button after every step It will ask you for a password for database superuser . Enter and note is somewhere for future use Check below option Finish installation Starting PGAdmin  Go to path where you installed PostgreSQL Go to <version> -> PGAdmin -> bin Open pgAdmin4 Set a master password for pgAdmin Connect to server Go to the left panel. Click on to servers Select server . Its PostgreSQL<version> Enter the same password you set while PostgreSQL installation Once you are connected to server, you can see other dropdowns like Tablespaces If you fac...

Rails App to schedule reminders & email notifications

Image
Scheduled Reminder DEVELOPER: Amruta Ashish Pednekar Git Repository : https://github.com/amrutapednekar/ScheduledReminders OVERVIEW & PURPOSE Build a small, simple Ruby on Rails application that sends monthly scheduled reminders to users Overall requirements A user should be able to register with an email and password After signing in, the user should see a list of their existing reminders The user should be able to create a new reminder (see below for details) Once a month, on a configurable day and time, the application should send the user an email with the reminder title and text The user should be able to delete existing reminders There should be basic tests in place for the core functionality (ideally in RSpec, but alternatives are fine if you're more comfortable with them) Reminder Configuration Requirements: The user should be able to add a title (i.e. subject line) The user should be able to add body text The user should be able to select a time of day when the email w...