TE
科技回声
首页24小时热榜最新最佳问答展示工作
GitHubTwitter
首页

科技回声

基于 Next.js 构建的科技新闻平台,提供全球科技新闻和讨论内容。

GitHubTwitter

首页

首页最新最佳问答展示工作

资源链接

HackerNews API原版 HackerNewsNext.js

© 2025 科技回声. 版权所有。

Ask HN: Tips for First Developer at company

1 点作者 casper345超过 6 年前
So technically I am a junior developer at my company but I am the first one so I am deciding a lot of the architecture of the platform. They contracted alot of work before, in Laravel. But I only know Rails with a React frontend. What should I be looking for dev workflow? We dont have a dev, staging, prod environment flow setup (contractors straight push code to production)- should I be thinking about that? Docker? Cronjobs? So many questions I thought a senior developer would know but its just me haha

2 条评论

thsowers超过 6 年前
This is an awesome opportunity for learning!<p>Much of what you should do depends on your specific situation, company type, and if you anticipate other devs eventually joining you.<p>The specific stack and container technologies that you choose for the architecture will vary greatly depending upon your scenario, but I will say that picking something stable, with a large community that other devs are familiar with will make your life easier in the long run.<p>Since you are currently alone, something that a solo developer can be quickly productive in (like Rails + React) would be ideal!<p>For workflow, you need some sort of beta&#x2F;staging environment so that code isn&#x27;t going directly to production. This is simple to setup and has big pay offs: you can use it to showcase new features to stakeholders and gathering feedback before &quot;pushing to production&quot;, as well as increasing stability. In the future with other devs you could scale this to a full pipeline with auto CD&#x2F;CI etc<p>I would also recommend trying to keep fairly decent documentation. If other devs join you in the future, they will greatly appreciate this. If you leave this job and they hire another contractor or dev, they (and hopefully your company) will appreciate this.<p>If you have to manage a lot of cloud servers or network architecture, I would highly recommend taking the &quot;Infrastructure as code&quot; approach. It&#x27;s pretty simple to get up and running on Digital Ocean with just a few lines of Terraform, and the benefits to devops are huge<p>Best of luck!
Cypher超过 6 年前
my priority would be to get a staging area setup, having anyone push directly to production is going to cause you endless stress if something breaks in the future and you can&#x27;t rollback to a stable release.<p>I love this story of how a junior delete the whole production database. <a href="https:&#x2F;&#x2F;www.reddit.com&#x2F;r&#x2F;cscareerquestions&#x2F;comments&#x2F;6ez8ag&#x2F;accidentally_destroyed_production_database_on&#x2F;" rel="nofollow">https:&#x2F;&#x2F;www.reddit.com&#x2F;r&#x2F;cscareerquestions&#x2F;comments&#x2F;6ez8ag&#x2F;a...</a><p>imagine in 2 years that happens to you when you&#x27;re not the junior anymore.