back to root goals/expectations
This commit is contained in:
4
freechat-client/.gitignore
vendored
Normal file
4
freechat-client/.gitignore
vendored
Normal file
@@ -0,0 +1,4 @@
|
||||
node_modules/
|
||||
target/
|
||||
static/css/
|
||||
.sass-cache
|
||||
14
freechat-client/Makefile
Normal file
14
freechat-client/Makefile
Normal file
@@ -0,0 +1,14 @@
|
||||
# Building primarily css here
|
||||
sass=static/sass/*
|
||||
css=
|
||||
|
||||
for item in $(sass) \
|
||||
css=$(css) $${item: scss:css} \
|
||||
done
|
||||
|
||||
all:
|
||||
mkdir -p static/css/
|
||||
for item in $(css) \
|
||||
sass static/sass
|
||||
sass static/sass:static/css
|
||||
|
||||
5
freechat-client/readme.md
Normal file
5
freechat-client/readme.md
Normal file
@@ -0,0 +1,5 @@
|
||||
# Client Build
|
||||
|
||||
This will be where we keep the code for the web-based-client.
|
||||
This client comms with our server code base found under `/server/` in this repository.
|
||||
|
||||
Reference in New Issue
Block a user