Initial commit: AI Recruitment Site for Ryans Recruit Firm
- Complete PostgreSQL schema with migrations - Node.js/Express backend with authentication - Public website (home, about, services, jobs, apply, contact) - Admin dashboard with applicant and job management - CV upload and storage in PostgreSQL BYTEA - Docker Compose setup for deployment - Session-based authentication - Responsive design with Ryan brand colors
This commit is contained in:
113
migrations/002_seed_data.sql
Normal file
113
migrations/002_seed_data.sql
Normal file
@@ -0,0 +1,113 @@
|
||||
-- Seed data for AI Recruitment Site
|
||||
|
||||
-- Insert sample job postings
|
||||
INSERT INTO job_postings (title, department, location, employment_type, salary_range, description, requirements, benefits, is_active)
|
||||
VALUES
|
||||
(
|
||||
'Senior Full-Stack Developer',
|
||||
'Engineering',
|
||||
'Remote / San Francisco, CA',
|
||||
'Full-time',
|
||||
'$120,000 - $180,000',
|
||||
'We are seeking an experienced Full-Stack Developer to join our dynamic team. You will be responsible for designing, developing, and maintaining web applications that serve thousands of users daily. This role offers an opportunity to work with cutting-edge technologies and contribute to meaningful projects.',
|
||||
'• 5+ years of experience in full-stack development
|
||||
• Proficiency in JavaScript/TypeScript, React, Node.js
|
||||
• Experience with PostgreSQL or similar relational databases
|
||||
• Strong understanding of RESTful APIs and microservices
|
||||
• Experience with Docker and cloud platforms (AWS/GCP/Azure)
|
||||
• Excellent problem-solving and communication skills',
|
||||
'• Competitive salary and equity package
|
||||
• Health, dental, and vision insurance
|
||||
• 401(k) matching
|
||||
• Flexible work arrangements
|
||||
• Professional development budget
|
||||
• Unlimited PTO',
|
||||
true
|
||||
),
|
||||
(
|
||||
'DevOps Engineer',
|
||||
'Engineering',
|
||||
'New York, NY',
|
||||
'Full-time',
|
||||
'$100,000 - $150,000',
|
||||
'Join our infrastructure team to build and maintain scalable, reliable systems. You will work on automation, monitoring, and deployment pipelines that power our applications.',
|
||||
'• 3+ years of DevOps or Site Reliability Engineering experience
|
||||
• Strong knowledge of Kubernetes, Docker, and container orchestration
|
||||
• Experience with CI/CD tools (Jenkins, GitLab CI, GitHub Actions)
|
||||
• Proficiency in scripting languages (Python, Bash)
|
||||
• Experience with infrastructure as code (Terraform, Ansible)
|
||||
• Understanding of cloud platforms and networking',
|
||||
'• Competitive compensation
|
||||
• Stock options
|
||||
• Remote work flexibility
|
||||
• Learning and development opportunities
|
||||
• Team events and offsites
|
||||
• Modern tech stack',
|
||||
true
|
||||
),
|
||||
(
|
||||
'UI/UX Designer',
|
||||
'Design',
|
||||
'Los Angeles, CA',
|
||||
'Full-time',
|
||||
'$90,000 - $130,000',
|
||||
'We are looking for a creative UI/UX Designer to craft beautiful and intuitive user experiences. You will work closely with product managers and engineers to bring ideas to life.',
|
||||
'• 3+ years of UI/UX design experience
|
||||
• Strong portfolio demonstrating web and mobile design
|
||||
• Proficiency in Figma, Sketch, or Adobe XD
|
||||
• Understanding of user-centered design principles
|
||||
• Experience conducting user research and usability testing
|
||||
• Knowledge of HTML/CSS is a plus',
|
||||
'• Creative and collaborative work environment
|
||||
• Health and wellness benefits
|
||||
• Flexible schedule
|
||||
• Latest design tools and equipment
|
||||
• Conference and workshop budget
|
||||
• Generous vacation policy',
|
||||
true
|
||||
),
|
||||
(
|
||||
'Data Scientist',
|
||||
'Data & Analytics',
|
||||
'Remote',
|
||||
'Full-time',
|
||||
'$110,000 - $160,000',
|
||||
'Help us unlock insights from data. As a Data Scientist, you will develop machine learning models, analyze complex datasets, and contribute to data-driven decision making.',
|
||||
'• Master''s or PhD in Computer Science, Statistics, or related field
|
||||
• 2+ years of experience in data science or machine learning
|
||||
• Strong programming skills in Python (pandas, scikit-learn, TensorFlow)
|
||||
• Experience with SQL and data warehousing
|
||||
• Knowledge of statistical modeling and A/B testing
|
||||
• Excellent communication skills to explain technical concepts',
|
||||
'• Competitive salary
|
||||
• Work with cutting-edge ML technologies
|
||||
• Conference attendance opportunities
|
||||
• Remote-first culture
|
||||
• Comprehensive health benefits
|
||||
• Equity compensation',
|
||||
true
|
||||
),
|
||||
(
|
||||
'Marketing Manager',
|
||||
'Marketing',
|
||||
'Chicago, IL',
|
||||
'Full-time',
|
||||
'$80,000 - $120,000',
|
||||
'Lead our marketing initiatives and help grow our brand. You will develop and execute marketing strategies, manage campaigns, and analyze performance metrics.',
|
||||
'• 5+ years of marketing experience
|
||||
• Proven track record in B2B or B2C marketing
|
||||
• Experience with digital marketing channels (SEO, SEM, social media)
|
||||
• Strong analytical skills and data-driven mindset
|
||||
• Excellent written and verbal communication
|
||||
• Experience with marketing automation tools',
|
||||
'• Competitive salary and bonuses
|
||||
• Health insurance
|
||||
• Professional development
|
||||
• Collaborative team environment
|
||||
• Flexible work options
|
||||
• Career growth opportunities',
|
||||
true
|
||||
);
|
||||
|
||||
-- Note: Admin users are created on first login, no seed data needed
|
||||
-- Note: Applicants and applications will be created through the application form
|
||||
Reference in New Issue
Block a user