Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
22 changes: 9 additions & 13 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,32 +6,28 @@ This repository contains the requirements definition of a project used for job a
for a **position of an [Elm](https://elm-lang.org/) developer at Scrive**.
The whole task is based on a real part of our production application and real needs we have addressed.

It also contains the skeleton of an Elm application with technologies we are currently
It also contains the skeleton of an Elm application with technologies we are currently
using - [Tailwind CSS](https://tailwindcss.com) and [Vite](https://vitejs.dev).

## Task parts

You must deliver at least one part of your choice. (You can of course do more parts).

You can choose from following parts:

- [Settings](task-settings.md)
- [Contact details](task-contact-details.md)
- [Tags](task-tags.md)
## Task

You are asked to create UI for [Tags](task-tags.md)

## Goal

The aim is to test your ability to come up with a solution to a real-world problem that will be part of your day-to-day responsibilities.
Obviously the first thing what we will look at is the extent to which your implementation meets the original requirements.
We also want to see your ability to come up with a robust solution and will look at the overall code quality.
We also want to see your ability to come up with a robust solution and will look at the overall code quality and choices.

## Where to Start

If you are interested in applying for an Elm developer position or just want to challenge yourself (which is also 100% OK with us),
please follow the steps below:

- Pick at least one [task](#task-parts) and read through the requirements.
If you are already in the process of application, you should have access to Scrive CAT - follow instructions in Scrive CAT app.

Otherwise:

- Fork this repository under your GitHub account.
- Complete an implementation within your fork.
- Open a pull request to the [original](https://github.com/scrive/elm-challenge/) repository with your own implementation.
Expand All @@ -44,8 +40,8 @@ Good luck and enjoy the challenge.

## How to start the dev server


```
npm ci
npm start
```
test stuff
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This is here from testing out the scrive-cat deployment and accidentally commit to master. Please ignore this line.

5 changes: 4 additions & 1 deletion elm.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,13 @@
"elm-version": "0.19.1",
"dependencies": {
"direct": {
"NoRedInk/elm-json-decode-pipeline": "1.0.1",
"elm/browser": "1.0.2",
"elm/core": "1.0.5",
"elm/html": "1.0.0",
"elm/json": "1.1.3"
"elm/json": "1.1.3",
"elm/svg": "1.0.1",
"elm-community/html-extra": "3.4.0"
},
"indirect": {
"elm/time": "1.0.0",
Expand Down
1 change: 1 addition & 0 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
<link media="all" rel="stylesheet" href="src/styles.css">
<title>Elm challenge</title>
<script type="module" src="src/app.js"></script>
<div id="elm-app"></div>
</head>
<body>

Expand Down
8 changes: 4 additions & 4 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
"devDependencies": {
"autoprefixer": "^10.4.15",
"elm-tooling": "^1.14.0",
"postcss": "^8.4.29",
"postcss": "^8.4.31",
"tailwindcss": "^3.3.3",
"vite": "^4.4.9",
"vite-plugin-elm": "^2.8.0"
Expand Down
Loading